2019-08-23 19:35:02 +02:00
|
|
|
if EXIST %PYTHON% (
|
|
|
|
|
goto detect_python_done
|
2018-05-25 17:57:13 -06:00
|
|
|
)
|
|
|
|
|
|
2019-08-23 19:35:02 +02:00
|
|
|
echo python not found in lib folder
|
|
|
|
|
exit /b 1
|
|
|
|
|
|
|
|
|
|
:detect_python_done
|
|
|
|
|
|
|
|
|
|
REM Use -B to avoid writing __pycache__ in lib directory and causing update conflicts.
|
|
|
|
|
%PYTHON% -B %BLENDER_DIR%\build_files\utils\make_update.py --git-command "%GIT%" --svn-command "%SVN%" %BUILD_UPDATE_ARGS%
|
|
|
|
|
|
2018-12-20 14:45:55 +01:00
|
|
|
:EOF
|