Commit 4be7420d authored by Zachary Ware's avatar Zachary Ware Committed by GitHub

[2.7] Add missing backslashes in PCbuild bat files (GH-5056) (GH-5058)

(cherry picked from commit fe90efdc07ec70fd4ff28eac179448a41379cff1)
parent 3ceaed0d
...@@ -30,7 +30,7 @@ if "%DO_FETCH%"=="false" goto end ...@@ -30,7 +30,7 @@ if "%DO_FETCH%"=="false" goto end
:fetch :fetch
if "%ORG%"=="" (set ORG=python) if "%ORG%"=="" (set ORG=python)
call "%PCBUILD%find_python.bat" "%PYTHON%" call "%PCBUILD%\find_python.bat" "%PYTHON%"
git 2>&1 > nul git 2>&1 > nul
if ERRORLEVEL 9009 ( if ERRORLEVEL 9009 (
...@@ -61,7 +61,7 @@ for %%e in (%libraries%) do ( ...@@ -61,7 +61,7 @@ for %%e in (%libraries%) do (
git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e" git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
) else ( ) else (
echo.Fetching %%e... echo.Fetching %%e...
%PYTHON% "%PCBUILD%get_external.py" -O %ORG% %%e %PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
) )
) )
...@@ -79,7 +79,7 @@ for %%b in (%binaries%) do ( ...@@ -79,7 +79,7 @@ for %%b in (%binaries%) do (
git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b" git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
) else ( ) else (
echo.Fetching %%b... echo.Fetching %%b...
%PYTHON% "%PCBUILD%get_external.py" -b -O %ORG% %%b %PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
) )
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment