Add script to add a file to SVN, setting the correct properties and warning about updating po/POTFILES.in.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2904 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
parent
a2fbc3a949
commit
33d207e27d
8
scripts/svn-add.sh
Executable file
8
scripts/svn-add.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/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) <<<'
|
Loading…
x
Reference in New Issue
Block a user