Integrating latest 47acbe8

This commit is contained in:
alexpete
2021-03-25 13:57:57 -07:00
parent 448c549698
commit 75dc720198
10312 changed files with 2711566 additions and 671451 deletions
+9 -2
View File
@@ -30,13 +30,20 @@ exit /B 1
:PYTHONHOME_EXISTS
SET PYTHON=%PYTHONHOME%\python.exe
SET PYTHON_ARGS=%*
IF [%1] EQU [debug] (
SET PYTHON=%PYTHONHOME%\python_d.exe
SET PYTHON_ARGS=%PYTHON_ARGS:~6%
)
IF EXIST "%PYTHON%" GOTO PYTHON_EXISTS
ECHO Could not find python.exe in %PYTHONHOME%
ECHO Could not find python executable at %PYTHON%
exit /B 1
:PYTHON_EXISTS
SET PYTHONNOUSERSITE=1
"%PYTHON%" %*
"%PYTHON%" %PYTHON_ARGS%
exit /B %ERRORLEVEL%