Fix 'null' listed in both primary and secondary keyword lists.
[geany-mirror.git] / scripts / svn-add.sh
blob2c97034a6dae335787895c77b0c01078ab30a7fb
1 #!/bin/sh
2 FILES=$*
3 if [ -n "$FILES" ]; then
4 svn add $FILES
5 svn propset svn:keywords 'Author Date Id Revision' $FILES
6 svn propset svn:eol-style native $FILES
7 fi
8 echo '>>> Remember to update Makefile.am, makefile.win32, wscript, po/POTFILES.in (if necessary) <<<'