Support adding multiple files.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3003 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-09-26 12:12:23 +00:00
parent 1fb45e2dab
commit 6abc7aa994

View File

@ -1,8 +1,8 @@
#!/bin/sh
FILE=$1
if [ -n "$FILE" ]; then
svn add $FILE
svn propset svn:keywords 'Author Date Id Revision' $FILE
svn propset svn:eol-style native $FILE
FILES=$*
if [ -n "$FILES" ]; then
svn add $FILES
svn propset svn:keywords 'Author Date Id Revision' $FILES
svn propset svn:eol-style native $FILES
fi
echo '>>> Remember to update po/POTFILES.in (if necessary) <<<'