blob: e837ca9bb01649265a8380ebd206083be19e475f [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001@echo off
2
3if "%*" EQU "" (
4 echo Usage: svn_add.bat FILE1 ...
5 goto end
6)
7
8svn add %*
9
10svn_pset.bat %*
11
12:end