diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-05-05 21:08:45 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-05 21:08:45 +0200 |
commit | dfc17e5f8e0652ebc4c693e5a5900a122b85ab95 (patch) | |
tree | 22ef4cc316a1859e21f401a7a3c9bca31785333d /koch.nim | |
parent | b7116a28eea13f4fd82b8b22323f2f75c813794f (diff) | |
download | Nim-dfc17e5f8e0652ebc4c693e5a5900a122b85ab95.tar.gz |
make Nimble not crash after the refactoring
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 d51b902ee..7a75ebf71 100644 --- a/koch.nim +++ b/koch.nim @@ -252,7 +252,7 @@ proc xz(args: string) = proc buildTool(toolname, args: string) = nimexec("cc $# $#" % [args, toolname]) - copyFile(dest="bin"/ splitFile(toolname).name.exe, source=toolname.exe) + copyFile(dest="bin" / splitFile(toolname).name.exe, source=toolname.exe) proc buildTools(latest: bool) = let nimsugExe = "bin/nimsuggest".exe |