summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-03-01 22:38:41 +0100
committerAraq <rumpf_a@web.de>2018-03-01 22:38:41 +0100
commit5ee9e86c87d831d32441db658046fc989a197ac9 (patch)
tree67109e5e03f8aacb1e717834a1b857033df2a53a /tools
parent855956bf617f68ac0be3717329e9e1181e5dc0c6 (diff)
downloadNim-5ee9e86c87d831d32441db658046fc989a197ac9.tar.gz
fixes finish.nim download bug
Diffstat (limited to 'tools')
-rw-r--r--tools/finish.nim2
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