diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-10-11 05:38:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 23:38:18 +0200 |
commit | 666a0e34cdf4ca6bafbb3cf8b86947217148c88f (patch) | |
tree | fbd309a7ab40d7cab3903fd6f2e970afd923542a | |
parent | 0774c3aaaa2a17d2f2e45ae06e65aed1ab7893a6 (diff) | |
download | Nim-666a0e34cdf4ca6bafbb3cf8b86947217148c88f.tar.gz |
remove unused `userVersion:1.6` which is succeeded by `nimPreviewSlimSystem` in this case (#20535)
removed unused userVersion:1.6
-rw-r--r-- | koch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index ad1ad2624..2597a3bb7 100644 --- a/koch.nim +++ b/koch.nim @@ -142,7 +142,7 @@ proc csource(args: string) = proc bundleC2nim(args: string) = cloneDependency(distDir, "https://github.com/nim-lang/c2nim.git") nimCompile("dist/c2nim/c2nim", - options = "--noNimblePath --useVersion:1.6 --path:. " & args) + options = "--noNimblePath --path:. " & args) proc bundleNimbleExe(latest: bool, args: string) = let commit = if latest: "HEAD" else: NimbleStableCommit @@ -150,7 +150,7 @@ proc bundleNimbleExe(latest: bool, args: string) = commit = commit, allowBundled = true) # installer.ini expects it under $nim/bin nimCompile("dist/nimble/src/nimble.nim", - options = "-d:release --mm:refc --useVersion:1.6 --noNimblePath " & args) + options = "-d:release --mm:refc --noNimblePath " & args) proc bundleNimsuggest(args: string) = nimCompileFold("Compile nimsuggest", "nimsuggest/nimsuggest.nim", |