geany/scripts/svn-add.sh
2008-12-25 17:02:56 +00:00

9 lines
265 B
Bash
Executable File

#!/bin/sh
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 Makefile.am, makefile.win32, wscript, po/POTFILES.in (if necessary) <<<'