From c089cf458aef7779effbf3b278f6daae6c4aca5d Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 4 Sep 2017 11:11:15 +0200 Subject: [PATCH] fixes #6028 --- koch.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koch.nim b/koch.nim index a07987eb99..6ae45fcb7d 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])