mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
bpo-36245: Fix more empty environment variable checks (GH-12592)
This commit is contained in:
parent
d5a5a33f12
commit
b95a79c928
1 changed files with 2 additions and 2 deletions
|
|
@ -2,8 +2,8 @@
|
|||
setlocal
|
||||
rem Simple script to fetch source for external libraries
|
||||
|
||||
if "%PCBUILD%"=="" (set PCBUILD=%~dp0)
|
||||
if "%EXTERNALS_DIR%"=="" (set EXTERNALS_DIR=%PCBUILD%\..\externals)
|
||||
if NOT DEFINED PCBUILD (set PCBUILD=%~dp0)
|
||||
if NOT DEFINED EXTERNALS_DIR (set EXTERNALS_DIR=%PCBUILD%\..\externals)
|
||||
|
||||
set DO_FETCH=true
|
||||
set DO_CLEAN=false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue