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

svn_update.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f91f03f15b35a1a84331bd6dbc10b67be8107a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if "%BUILD_VS_YEAR%"=="2019" set BUILD_VS_LIBDIRPOST=vc15
if "%BUILD_VS_YEAR%"=="2022" set BUILD_VS_LIBDIRPOST=vc15

set BUILD_VS_SVNDIR=win64_%BUILD_VS_LIBDIRPOST%
set BUILD_VS_LIBDIR="%BLENDER_DIR%..\lib\%BUILD_VS_SVNDIR%"

cd %BUILD_VS_LIBDIR%
:RETRY
"%SVN%" update
if errorlevel 1 (
		set /p LibRetry= "Error during update, retry? y/n"
		if /I "!LibRetry!"=="Y" (
			"%SVN%" cleanup
			goto RETRY
		)
		echo.
		echo Error: Download of external libraries failed. 
		echo This is needed for building, please manually run 'svn cleanup' and 'svn update' in
		echo %BUILD_VS_LIBDIR% , until this is resolved you CANNOT make a successful blender build
		echo.
		exit /b 1
)

cd %BLENDER_DIR%