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