Skip to content

Commit a73baa4

Browse files
committed
[2.7] Add missing backslashes in PCbuild bat files (pythonGH-5056) (pythonGH-5057)
(cherry picked from commit 6c6d3a4). (cherry picked from commit fe90efd)
1 parent 3ceaed0 commit a73baa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PCbuild/get_externals.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if "%DO_FETCH%"=="false" goto end
3030
:fetch
3131

3232
if "%ORG%"=="" (set ORG=python)
33-
call "%PCBUILD%find_python.bat" "%PYTHON%"
33+
call "%PCBUILD%\find_python.bat" "%PYTHON%"
3434

3535
git 2>&1 > nul
3636
if ERRORLEVEL 9009 (
@@ -61,7 +61,7 @@ for %%e in (%libraries%) do (
6161
git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
6262
) else (
6363
echo.Fetching %%e...
64-
%PYTHON% "%PCBUILD%get_external.py" -O %ORG% %%e
64+
%PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
6565
)
6666
)
6767

@@ -79,7 +79,7 @@ for %%b in (%binaries%) do (
7979
git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
8080
) else (
8181
echo.Fetching %%b...
82-
%PYTHON% "%PCBUILD%get_external.py" -b -O %ORG% %%b
82+
%PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
8383
)
8484
)
8585

0 commit comments

Comments
 (0)