Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5286 dpurdie 1
@echo off
2
REM Maintained in package SubversionServerSupport
3
REM
4
REM Update the VisualSVN-Replication.ini in all the repositories
5
REM
6
for /D %%R in ( e:\Repositories\* ) do call :UpdateOne %%R
7
goto end
8
 
9
:UpdateOne
10
if exist %1\conf\VisualSVN-Replication.ini goto UpdateOne.1
11
echo *Skipping %1
12
goto end
13
 
14
:UpdateOne.1
15
echo  Updating %1
16
copy e:\Repositories\VisualSVN-Replication.ini %1\conf >nul
17
 
18
:end