Fix the nimble build on Windows (#21314)

Fix the build on Windows

- `nimble install` fails on Windows, the `./` is not needed.
This commit is contained in:
Ivan Yonchovski
2023-02-01 11:38:22 +02:00
committed by GitHub
parent 900fe8f501
commit 43b1b9d077

View File

@@ -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"