mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-02 18:07:59 +00:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user