Update update_translations script to consider several things conditionally
Specifically, previously if there was nothing to git add, whole script would just die
This commit is contained in:
parent
de91730336
commit
f4b206166e
@ -27,8 +27,9 @@ git pull
|
|||||||
|
|
||||||
echo "==> pulling present translations"
|
echo "==> pulling present translations"
|
||||||
./bin/tx pull -a
|
./bin/tx pull -a
|
||||||
git add mediagoblin/i18n/
|
if git add mediagoblin/i18n/; then
|
||||||
git commit -m "Committing present MediaGoblin translations before pushing extracted messages"
|
git commit -m "Committing present MediaGoblin translations before pushing extracted messages";
|
||||||
|
fi
|
||||||
|
|
||||||
echo "==> Extracting translations"
|
echo "==> Extracting translations"
|
||||||
./bin/pybabel extract -F babel.ini -o mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po .
|
./bin/pybabel extract -F babel.ini -o mediagoblin/i18n/en/LC_MESSAGES/mediagoblin.po .
|
||||||
@ -44,5 +45,6 @@ echo "==> Compiling .mo files"
|
|||||||
./bin/pybabel compile -D mediagoblin -d mediagoblin/i18n/
|
./bin/pybabel compile -D mediagoblin -d mediagoblin/i18n/
|
||||||
|
|
||||||
echo "==> Committing to git"
|
echo "==> Committing to git"
|
||||||
git add mediagoblin/i18n/
|
if git add mediagoblin/i18n/; then
|
||||||
git commit -m "Committing extracted and compiled translations"
|
git commit -m "Committing extracted and compiled translations";
|
||||||
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user