diff options
author | Fredrik Høisæther Rasch <fredrik.rasch@gmail.com> | 2017-03-21 01:10:11 +0100 |
---|---|---|
committer | Fredrik Høisæther Rasch <fredrik.h.rasch@uit.no> | 2017-03-21 12:18:31 +0100 |
commit | 289f72ad67faf273b63d49c0983072f43960e370 (patch) | |
tree | f74908cdb117c67019ac952873fb16c8fd7563a2 /tools/vccexe | |
parent | 5341d36397ed726d4174cba54fc6bdf52fb77074 (diff) | |
download | Nim-289f72ad67faf273b63d49c0983072f43960e370.tar.gz |
Fixed vccexe, now regards the command argument
Diffstat (limited to 'tools/vccexe')
-rw-r--r-- | tools/vccexe/vccexe.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/vccexe/vccexe.nim b/tools/vccexe/vccexe.nim index 4ecbfe50e..d5ed143a5 100644 --- a/tools/vccexe/vccexe.nim +++ b/tools/vccexe/vccexe.nim @@ -88,7 +88,7 @@ when isMainModule: if commandArg.len < 1: commandArg = "cl.exe" let vccProcess = startProcess( - "cl.exe", + commandArg, args = clArgs, options = vccOptions ) |