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.
where
1 parent 7daa45d commit aa23144Copy full SHA for aa23144
PCbuild/get_externals.bat
@@ -32,8 +32,11 @@ if "%DO_FETCH%"=="false" goto end
32
if "%ORG%"=="" (set ORG=python)
33
call "%PCBUILD%find_python.bat" "%PYTHON%"
34
35
-if "%PYTHON%"=="" (
36
- where /Q git || echo Python 3.6 could not be found or installed, and git.exe is not on your PATH && exit /B 1
+git 2>&1 > nul
+if ERRORLEVEL 9009 (
37
+ if "%PYTHON%"=="" (
38
+ echo Python 3.6 could not be found or installed, and git.exe is not on your PATH && exit /B 1
39
+ )
40
)
41
42
echo.Fetching external libraries...
0 commit comments