summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2017-12-30 23:54:31 (GMT)
committerGitHub <noreply@github.com>2017-12-30 23:54:31 (GMT)
commitfe90efdc07ec70fd4ff28eac179448a41379cff1 (patch)
treed829cafc133da1c7e838cd6614aa3e8a72241ee3
parent1b2812a7b49771b3c6918f29ac2a2678d80c74f3 (diff)
downloadcpython-fe90efdc07ec70fd4ff28eac179448a41379cff1.zip
cpython-fe90efdc07ec70fd4ff28eac179448a41379cff1.tar.gz
cpython-fe90efdc07ec70fd4ff28eac179448a41379cff1.tar.bz2
Add missing backslashes in PCbuild bat files (GH-5056) (GH-5057)
(cherry picked from commit 6c6d3a46087bacb9c767c8cf2185505348d3796d)
-rw-r--r--PCbuild/get_externals.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat
index e6faab1..58e6c5d 100644
--- a/PCbuild/get_externals.bat
+++ b/PCbuild/get_externals.bat
@@ -31,7 +31,7 @@ if "%DO_FETCH%"=="false" goto end
if "%ORG%"=="" (set ORG=python)
-call "%PCBUILD%find_python.bat" "%PYTHON%"
+call "%PCBUILD%\find_python.bat" "%PYTHON%"
if "%PYTHON%"=="" (
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 (
git clone --depth 1 https://github.com/%ORG%/cpython-source-deps --branch %%e "%EXTERNALS_DIR%\%%e"
) else (
echo.Fetching %%e...
- %PYTHON% "%PCBUILD%get_external.py" -O %ORG% %%e
+ %PYTHON% "%PCBUILD%\get_external.py" -O %ORG% %%e
)
)
@@ -74,7 +74,7 @@ for %%b in (%binaries%) do (
git clone --depth 1 https://github.com/%ORG%/cpython-bin-deps --branch %%b "%EXTERNALS_DIR%\%%b"
) else (
echo.Fetching %%b...
- %PYTHON% "%PCBUILD%get_external.py" -b -O %ORG% %%b
+ %PYTHON% "%PCBUILD%\get_external.py" -b -O %ORG% %%b
)
)