Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

@echo off
REM Update all the hooks
for /D %%R in ( e:\Repositories\* ) do call :UpdateOne %%R
goto end

:UpdateOne
if not exist %1\hooks\specialhooks goto UpdateOne.1
echo *Skipping %1
goto end

:UpdateOne.1
echo  Updating %1
copy e:\Repositories\*.cmd %1\hooks >nul

:end