diff options
author | Araq <rumpf_a@web.de> | 2018-03-01 22:38:41 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-03-01 22:38:41 +0100 |
commit | 5ee9e86c87d831d32441db658046fc989a197ac9 (patch) | |
tree | 67109e5e03f8aacb1e717834a1b857033df2a53a /tools | |
parent | 855956bf617f68ac0be3717329e9e1181e5dc0c6 (diff) | |
download | Nim-5ee9e86c87d831d32441db658046fc989a197ac9.tar.gz |
fixes finish.nim download bug
Diffstat (limited to 'tools')
-rw-r--r-- | tools/finish.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/finish.nim b/tools/finish.nim index 207f15f76..2681f7ccf 100644 --- a/tools/finish.nim +++ b/tools/finish.nim @@ -34,7 +34,7 @@ proc downloadMingw(): DownloadResult = if curl.len > 0: cmd = quoteShell(curl) & " --out " & "dist" / mingw & " " & url elif fileExists"bin/nimgrab.exe": - cmd = "bin/nimgrab.exe " & url & " dist" / mingw + cmd = r"bin\nimgrab.exe " & url & " dist" / mingw if cmd.len > 0: if execShellCmd(cmd) != 0: echo "download failed! ", cmd |