diff options
author | Fredrik Høisæther Rasch <fredrik.rasch@gmail.com> | 2017-03-20 22:18:26 +0100 |
---|---|---|
committer | Fredrik Høisæther Rasch <fredrik.h.rasch@uit.no> | 2017-03-21 12:18:22 +0100 |
commit | 503a816b362c124b23ec45bf19113bac57bdb136 (patch) | |
tree | 458acdcd64db3916b2757a607129b93c6aba7c23 /koch.nim | |
parent | 45f61ad0466d317bb77b151ed633389fd0eeac22 (diff) | |
download | Nim-503a816b362c124b23ec45bf19113bac57bdb136.tar.gz |
Corrected erroneous vccexe tool path in koch
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 6eee09b7b..2ea53b2a7 100644 --- a/koch.nim +++ b/koch.nim @@ -219,7 +219,7 @@ proc bundleNimsuggest(buildExe: bool) = removeFile("nimsuggest/nimsuggest".exe) proc buildVccTool() = - nimexec("c -o:bin/vccexe.exe tools/vccenv/vccexe") + nimexec("c -o:bin/vccexe.exe tools/vccexe/vccexe") proc bundleWinTools() = nimexec("c tools/finish.nim") |