diff options
author | Araq <rumpf_a@web.de> | 2017-09-04 11:11:15 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-09-04 11:11:15 +0200 |
commit | c089cf458aef7779effbf3b278f6daae6c4aca5d (patch) | |
tree | d0fa655df515a36a2fda31bc999d008a79c226e1 /koch.nim | |
parent | a5b19ba86cd10c5e5de0d0a0f64fb0441f6f54be (diff) | |
download | Nim-c089cf458aef7779effbf3b278f6daae6c4aca5d.tar.gz |
fixes #6028
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index a07987eb9..6ae45fcb7 100644 --- a/koch.nim +++ b/koch.nim @@ -227,6 +227,7 @@ proc bundleWinTools() = removeFile("tools/finish".exe) buildVccTool() nimexec("c -o:bin/nimgrab.exe -d:ssl tools/nimgrab.nim") + nimexec("c -o:bin/nimgrep.exe tools/nimgrep.nim") when false: # not yet a tool worth including nimexec(r"c --cc:vcc --app:gui -o:bin\downloader.exe -d:ssl --noNimblePath " & @@ -234,7 +235,7 @@ proc bundleWinTools() = proc zip(args: string) = bundleNimbleExe() - bundleNimsuggest(false) + bundleNimsuggest(true) bundleWinTools() nimexec("cc -r $2 --var:version=$1 --var:mingw=none --main:compiler/nim.nim scripts compiler/installer.ini" % [VersionAsString, compileNimInst]) |