blob: e837ca9bb01649265a8380ebd206083be19e475f [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001@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