Skip to content
This repository has been archived by the owner on Sep 15, 2022. It is now read-only.

Commit

Permalink
Fix stringmerge script to commit to GIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
gleu committed Jul 19, 2010
1 parent 08e2826 commit 50740b6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stringmerge
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,17 @@

if test -f pgadmin3.pot; then

git pull
for GETTEXTDIR in i18n/??_?? ; do
echo "Entering $GETTEXTDIR."
cd $GETTEXTDIR
echo "Updating from SVN."
svn update
echo "Merging pgadmin3.pot into pgadmin3.po"
msgmerge --update pgadmin3.po ../../pgadmin3.pot
git add pgadmin3.po pgadmin3.mo
cd ../..
done
cd i18n
echo "Committing changes to SVN."
svn commit -m "Automatic merge using stringmerge script."
git commit -m "Automatic merge using stringmerge script."
fi

0 comments on commit 50740b6

Please sign in to comment.