Skip to content

Commit fe90efd

Browse files
authored
Add missing backslashes in PCbuild bat files (GH-5056) (GH-5057)
(cherry picked from commit 6c6d3a4)
1 parent 1b2812a commit fe90efd

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
@@ -31,7 +31,7 @@ if "%DO_FETCH%"=="false" goto end
3131

3232
if "%ORG%"=="" (set ORG=python)
3333

34-
call "%PCBUILD%find_python.bat" "%PYTHON%"
34+
call "%PCBUILD%\find_python.bat" "%PYTHON%"
3535

3636
if "%PYTHON%"=="" (
3737
where /Q git || echo Python 3.6 could not be found or installed, and git.exe is not on your PATH && exit /B 1
@@ -56,7 +56,7 @@ for %%e in (%libraries%) do (
5656
git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
5757
) else (
5858
echo.Fetching %%e...
59-
%PYTHON% "%PCBUILD%get_external.py" -O %ORG% %%e
59+
%PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
6060
)
6161
)
6262

@@ -74,7 +74,7 @@ for %%b in (%binaries%) do (
7474
git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
7575
) else (
7676
echo.Fetching %%b...
77-
%PYTHON% "%PCBUILD%get_external.py" -b -O %ORG% %%b
77+
%PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
7878
)
7979
)
8080

0 commit comments

Comments
 (0)