bpo-36245: Fix more empty environment variable checks (GH-12592)
This commit is contained in:
parent
d5a5a33f12
commit
b95a79c928
|
@ -2,8 +2,8 @@
|
||||||
setlocal
|
setlocal
|
||||||
rem Simple script to fetch source for external libraries
|
rem Simple script to fetch source for external libraries
|
||||||
|
|
||||||
if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
|
if NOT DEFINED PCBUILD (set PCBUILD=%~dp0)
|
||||||
if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
|
if NOT DEFINED EXTERNALS_DIR (set EXTERNALS_DIR=%PCBUILD%\..\externals)
|
||||||
|
|
||||||
set DO_FETCH=true
|
set DO_FETCH=true
|
||||||
set DO_CLEAN=false
|
set DO_CLEAN=false
|
||||||
|
|
Loading…
Reference in New Issue