From 8ab94cdd45a9730ec4401feead74b2c86e10ce6b Mon Sep 17 00:00:00 2001 From: Araq Date: Wed, 5 Jun 2019 11:26:10 +0200 Subject: [PATCH] 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 --- koch.nim | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koch.nim b/koch.nim index 1832a49b94..4fb58ef818 100644 --- a/koch.nim +++ b/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() =