mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
refs #11402; now koch ships a fixed version of Nimble so that the connection between Nim and Nimble version is obvious when you do 'git checkout v0.20' in Nim's repo
This commit is contained in:
5
koch.nim
5
koch.nim
@@ -159,9 +159,10 @@ proc buildNimble(latest: bool) =
|
||||
withDir(installDir):
|
||||
if latest:
|
||||
exec("git checkout -f master")
|
||||
exec("git pull")
|
||||
else:
|
||||
exec("git checkout -f stable")
|
||||
exec("git pull")
|
||||
exec("git fetch")
|
||||
exec("git checkout tags/v0.10.2")
|
||||
nimCompile(installDir / "src/nimble.nim", options = "--noNimblePath --nilseqs:on -d:release")
|
||||
|
||||
proc bundleNimsuggest() =
|
||||
|
||||
Reference in New Issue
Block a user