Files
es_build_deliv/windows/inc/svn_command.bat
T
2018-05-13 14:10:59 +02:00

13 lines
224 B
Batchfile

@echo off
rem This is required to perform svn commands because they often fails, so we repeat them
rem until they succeed.
set i=0
:start
if not "%i%"=="0" goto finish
svn %*
if not errorlevel 1 set i=1
goto start
:finish