diff options
author | Ivan Yonchovski <yyoncho@users.noreply.github.com> | 2023-02-01 11:38:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-01 10:38:22 +0100 |
commit | 43b1b9d077c6a96580f202101e643fdcd34e30fb (patch) | |
tree | 0d9dc9c093f241986319b2e040da5a229be4bf4b /nim.nimble | |
parent | 900fe8f501838077a5a1ef3d6793a1e901083bf8 (diff) | |
download | Nim-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.nimble | 2 |
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" |