diff options
author | Steve Dower <steve.dower@microsoft.com> | 2018-02-18 02:59:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-18 02:59:03 (GMT) |
commit | 01423cb53b5662b363d2f1a5963eadfe951ef3e8 (patch) | |
tree | 51d62aa19d6ff0d865080974fe8e0a2052ff1aaf /PCbuild/get_externals.bat | |
parent | d6ff8a7037903497eff95fa32bdac2b6adf71505 (diff) | |
download | cpython-01423cb53b5662b363d2f1a5963eadfe951ef3e8.zip cpython-01423cb53b5662b363d2f1a5963eadfe951ef3e8.tar.gz cpython-01423cb53b5662b363d2f1a5963eadfe951ef3e8.tar.bz2 |
Improves the ability to build in CI (GH-5728)
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 ed9ff75..e696f22 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% "%PCBUILD%\get_external.py" -O %ORG% %%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% "%PCBUILD%\get_external.py" -b -O %ORG% %%b + %PYTHON% -E "%PCBUILD%get_external.py" -b -O %ORG% -e "%EXTERNALS_DIR%" %%b ) ) |