File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -64,12 +64,9 @@ set libraries=%libraries% zlib-1.2.11
6464for %%e in (%libraries% ) do (
6565 if exist " %EXTERNALS_DIR% \%%e " (
6666 echo .%%e already exists, skipping.
67- ) else if NOT DEFINED PYTHON (
67+ ) else (
6868 echo .Fetching %%e with git...
6969 git clone --depth 1 https://github.com/%ORG% /cpython-source-deps --branch %%e " %EXTERNALS_DIR% \%%e "
70- ) else (
71- echo .Fetching %%e ...
72- %PYTHON% -E " %PCBUILD% \get_external.py" -O %ORG% -e " %EXTERNALS_DIR% " %%e
7370 )
7471)
7572
@@ -84,12 +81,9 @@ if NOT "%IncludeSSLSrc%"=="false" set binaries=%binaries% nasm-2.11.06
8481for %%b in (%binaries% ) do (
8582 if exist " %EXTERNALS_DIR% \%%b " (
8683 echo .%%b already exists, skipping.
87- ) else if NOT DEFINED PYTHON (
84+ ) else (
8885 echo .Fetching %%b with git...
8986 git clone --depth 1 https://github.com/%ORG% /cpython-bin-deps --branch %%b " %EXTERNALS_DIR% \%%b "
90- ) else (
91- echo .Fetching %%b ...
92- %PYTHON% -E " %PCBUILD% \get_external.py" -b -O %ORG% -e " %EXTERNALS_DIR% " %%b
9387 )
9488)
9589
You can’t perform that action at this time.
0 commit comments