diff options
author | Oscar Campbell <oscar@campbell.nu> | 2015-06-03 13:08:28 +0200 |
---|---|---|
committer | Oscar Campbell <oscar@campbell.nu> | 2015-06-03 13:08:28 +0200 |
commit | 51fc903dbf26a30add2ec75bbdc01a403cb2d46c (patch) | |
tree | aadfa25f41fdd74e8ad81e575b376f09bc97f0e1 /koch.nim | |
parent | bf9053315c75037a58230f8abc7f75ece636f806 (diff) | |
download | Nim-51fc903dbf26a30add2ec75bbdc01a403cb2d46c.tar.gz |
Made pathing (hopefully) Windows friendly.
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 83737d751..8962acdc1 100644 --- a/koch.nim +++ b/koch.nim @@ -332,7 +332,7 @@ template `|`(a, b): expr = (if a.len > 0: a else: b) proc tests(args: string) = # Since tests take a long time (on my machine) - lets make sure a stupid # mistake - like forgetting to compile the compiler - isn't made... - exec "nim c --lib:./lib -d:release compiler/nim.nim" + exec "nim c --lib:lib -d:release compiler/nim.nim" # we compile the tester with taintMode:on to have a basic # taint mode test :-) exec "nim cc --taintMode:on tests/testament/tester" |