summary refs log tree commit diff stats
path: root/tools/nimrepl.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-laptop>2010-07-21 20:59:06 +0200
committerAndreas Rumpf <andreas@andreas-laptop>2010-07-21 20:59:06 +0200
commitcdf03b06b93d8bf5023d7c4b38a761675a20d514 (patch)
treef41ea10b1d54502600e841605d8fb0767558e5d3 /tools/nimrepl.nim
parentde27098546773b9af5d1a1c06f68f06fadbf3008 (diff)
downloadNim-cdf03b06b93d8bf5023d7c4b38a761675a20d514.tar.gz
added system.appType magic
Diffstat (limited to 'tools/nimrepl.nim')
-rwxr-xr-xtools/nimrepl.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nimrepl.nim b/tools/nimrepl.nim
index 6f4478816..247bf0d10 100755
--- a/tools/nimrepl.nim
+++ b/tools/nimrepl.nim
@@ -17,7 +17,7 @@ proc execCode(code: string): string =
   else:
     raise newException(EIO, "Unable to open file")    
   result = osproc.execProcess(
-      "nimrod run --verbosity:0 --hint[Conf]:off temp.nim")
+      "nimrod c -r --verbosity:0 --hint[Conf]:off temp.nim")
 
 var shiftPressed = False
 var w: gtk2.PWindow