82449f388e
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3284 ea778897-0a13-0410-b9d1-a72fbfd435f5
9 lines
252 B
Bash
Executable File
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) <<<'
|