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:
Araq
2019-06-05 11:26:10 +02:00
parent cb45527e37
commit 8ab94cdd45

View File

@@ -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() =