diff options
author | araq <rumpf_a@web.de> | 2017-02-15 22:10:31 +0100 |
---|---|---|
committer | araq <rumpf_a@web.de> | 2017-02-15 22:10:31 +0100 |
commit | 5b5bd3811b5f6e7841128527cb098b23b373e7a6 (patch) | |
tree | 76fa3526130f2596c4beb39bbcc0853e762c4918 /koch.nim | |
parent | 1811e51ff5dc0213a5abfd0f2bb32729f40c0344 (diff) | |
download | Nim-5b5bd3811b5f6e7841128527cb098b23b373e7a6.tar.gz |
koch: don't build downloader tool, it is not ready
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index 825b360a0..109dcc3f1 100644 --- a/koch.nim +++ b/koch.nim @@ -223,8 +223,9 @@ proc bundleWinTools() = copyExe("tools/finish".exe, "finish".exe) removeFile("tools/finish".exe) nimexec("c -o:bin/vccexe.exe tools/vccenv/vccexe") - nimexec(r"c --cc:vcc --app:gui -o:bin\downloader.exe -d:ssl --noNimblePath " & - r"--path:..\ui tools\downloader.nim") + when false: + nimexec(r"c --cc:vcc --app:gui -o:bin\downloader.exe -d:ssl --noNimblePath " & + r"--path:..\ui tools\downloader.nim") proc zip(args: string) = bundleNimbleSrc() |