Files
es_build_deliv/windows_deliv/svn_command.bat
Jocelyn b216cb5759 quiet svn commands
workaround few issues (delay during deletion ?)
2019-03-02 20:24:34 +00:00

14 lines
295 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
echo svn ... %*
svn --config-option config:miscellany:use-commit-times=yes %*
if not errorlevel 1 set i=1
goto start
:finish