9 lines
147 B
Batchfile
9 lines
147 B
Batchfile
@echo off
|
|
setlocal
|
|
%~dp0config.bat
|
|
set REPO_NAME=%1
|
|
set REPO_LOCAL=file:///%REPO_ROOT%/svn/%REPO_NAME%
|
|
start svnsync sync "%REPO_LOCAL%"
|
|
|
|
endlocal
|