diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-02-07 08:02:17 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-02-07 08:02:17 +0100 |
commit | a62c60ef870f6d1c26f6c91b93b2ba79bc7c5242 (patch) | |
tree | 02bc96e49a7b42cc18372d5521d3df31879bdaae /koch.nim | |
parent | 379bdeca06b42a7151a60ae14617117432ceb03d (diff) | |
download | Nim-a62c60ef870f6d1c26f6c91b93b2ba79bc7c5242.tar.gz |
koch.nim: don't commit after 1am
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index 2b5e05207..b1ab07e35 100644 --- a/koch.nim +++ b/koch.nim @@ -223,8 +223,8 @@ proc bundleWinTools() = copyExe("tools/finish".exe, "finish".exe) removeFile("tools/finish".exe) nimexec("c -o:bin/vccexe.exe tools/vccenv/vccexe") - nimexec("c --cc:vcc --app:gui -o:downloader.exe --noNimblePath " & - "--path:..\ui tools\downloader.nim") + nimexec(r"c --cc:vcc --app:gui -o:downloader.exe --noNimblePath " & + r"--path:..\ui tools\downloader.nim") proc zip(args: string) = bundleNimbleSrc() |