tornavis/build_files/windows/update_sources.cmd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
310 B
Batchfile
Raw Normal View History

if NOT EXIST %PYTHON% (
echo python not found, required for this operation
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%" %BUILD_UPDATE_ARGS%
:EOF