Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_sources.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f99ce43f40f7312ef2c974a2f90a3f9c4e439d1a (plain)
1
2
3
4
5
6
7
8
9
10
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%" --svn-command "%SVN%" %BUILD_UPDATE_ARGS%

:EOF