Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1291 dpurdie 1
@echo off
4226 dpurdie 2
REM Maintained in package SubversionServerSupport
3
REM
4
REM Update all the hooks in all the repositories
5
REM     Skip repos that contain the file REPO/hooks/specialhooks
6
REM
1291 dpurdie 7
for /D %%R in ( e:\Repositories\* ) do call :UpdateOne %%R
8
goto end
9
 
10
:UpdateOne
11
if not exist %1\hooks\specialhooks goto UpdateOne.1
12
echo *Skipping %1
13
goto end
14
 
15
:UpdateOne.1
16
echo  Updating %1
17
copy e:\Repositories\*.cmd %1\hooks >nul
18
 
19
:end