33d207e27d
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2904 ea778897-0a13-0410-b9d1-a72fbfd435f5
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/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
|
|
fi
|
|
echo '>>> Remember to update po/POTFILES.in (if necessary) <<<'
|