diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-02-18 03:58:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 03:58:57 (GMT) |
commit | 667b91a5e210e20946ad41f1796c544a1becf1b6 (patch) | |
tree | 7e5b6985af263286a6a938df0c5bdf80e1cd49b2 /PCbuild/get_externals.bat | |
parent | 01423cb53b5662b363d2f1a5963eadfe951ef3e8 (diff) | |
download | cpython-667b91a5e210e20946ad41f1796c544a1becf1b6.zip cpython-667b91a5e210e20946ad41f1796c544a1becf1b6.tar.gz cpython-667b91a5e210e20946ad41f1796c544a1becf1b6.tar.bz2 |
Add missing backslashes to get_externals.bat (GH-5731)
Diffstat (limited to 'PCbuild/get_externals.bat')
-rw-r--r-- | PCbuild/get_externals.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index e696f22..d2af042 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -65,7 +65,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% -E "%PCBUILD%get_external.py" -O %ORG% -e "%EXTERNALS_DIR%" %%e + %PYTHON% -E "%PCBUILD%\get_external.py" -O %ORG% -e "%EXTERNALS_DIR%" %%e ) ) @@ -84,7 +84,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% -E "%PCBUILD%get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b + %PYTHON% -E "%PCBUILD%\get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b ) ) |