geany/scripts/svn-add.sh
2008-11-28 12:39:29 +00:00

9 lines
252 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.win32, wscript, po/POTFILES.in (if necessary) <<<'