We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 174c465 commit 281b10fCopy full SHA for 281b10f
preconfigure.py
@@ -38,7 +38,7 @@ def build_ninja():
38
# If we are on windows, we don't need to compile ninja, we just download the executable
39
if os.name == "nt":
40
ninja_exe_url = "https://github.com/ninja-build/ninja/releases/download/v1.13.0/ninja-win.zip"
41
- ninja_zip_path = sys.path[0] + os.path.sep + "ninja-win.zip"
+ ninja_zip_path = os.path.join(sys.path[0], "ninja-win.zip")
42
43
# Try to execute ninja, if it fails, download .exe from github
44
try:
0 commit comments