summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-01-15 23:07:51 +0100
committerAraq <rumpf_a@web.de>2019-01-15 23:08:09 +0100
commitece5887ab0af2e95f8327da59e43fda1e4b1b753 (patch)
treeeefb85289f7b2ae952469109e929d02e255c29e5 /koch.nim
parent7920dc2898b9518a89c4a588dac2bcdea5658a92 (diff)
downloadNim-ece5887ab0af2e95f8327da59e43fda1e4b1b753.tar.gz
another attempt to fix https://github.com/nim-lang/nightlies/issues/17
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim
index b50b6c0e1..7059e87a5 100644
--- a/koch.nim
+++ b/koch.nim
@@ -75,7 +75,7 @@ Web options:
 """
 
 let kochExe* = when isMainModule: os.getAppFilename() # always correct when koch is main program, even if `koch` exe renamed eg: `nim c -o:koch_debug koch.nim`
-               else: getAppDir() / "koch " # `best effort`, works for ur particular use case in nightly
+               else: getAppDir() / "koch".exe # works for winrelease
 
 proc kochExec*(cmd: string) =
   exec kochExe.quoteShell & " " & cmd