mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-09 11:28:25 +00:00
13 lines
110 B
Batchfile
13 lines
110 B
Batchfile
|
|
@echo off
|
||
|
|
|
||
|
|
if "%*" EQU "" (
|
||
|
|
echo Usage: svn_add.bat FILE1 ...
|
||
|
|
goto end
|
||
|
|
)
|
||
|
|
|
||
|
|
svn add %*
|
||
|
|
|
||
|
|
svn_pset.bat %*
|
||
|
|
|
||
|
|
:end
|