summary refs log tree commit diff stats
path: root/nim.nimble
diff options
context:
space:
mode:
authorIvan Yonchovski <yyoncho@users.noreply.github.com>2023-02-01 11:38:22 +0200
committerGitHub <noreply@github.com>2023-02-01 10:38:22 +0100
commit43b1b9d077c6a96580f202101e643fdcd34e30fb (patch)
tree0d9dc9c093f241986319b2e040da5a229be4bf4b /nim.nimble
parent900fe8f501838077a5a1ef3d6793a1e901083bf8 (diff)
downloadNim-43b1b9d077c6a96580f202101e643fdcd34e30fb.tar.gz
Fix the nimble build on Windows (#21314)
Fix the build on Windows

- `nimble install` fails on Windows, the `./` is not needed.
Diffstat (limited to 'nim.nimble')
-rw-r--r--nim.nimble2
1 files changed, 1 insertions, 1 deletions
diff --git a/nim.nimble b/nim.nimble
index 5d1be49b1..713fc9256 100644
--- a/nim.nimble
+++ b/nim.nimble
@@ -9,6 +9,6 @@ skipDirs = @["build" , "changelogs" , "ci" , "csources_v2" , "drnim" , "nimdoc",
 
 before install:
   when defined(windows):
-    exec "./build_all.bat"
+    exec "build_all.bat"
   else:
     exec "./build_all.sh"