Update update_translations script to consider several things conditionally
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 29 Jan 2012 19:22:21 +0000 (13:22 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sun, 29 Jan 2012 19:22:21 +0000 (13:22 -0600)
Specifically, previously if there was nothing to git add, whole script would just die

devtools/update_translations.sh

index 1708e7e03881d20b3229a389c5aff5ac37bf34e9..069b47af4d47ca74fb96679d7342e94e0fbf53c9 100755 (executable)
@@ -27,8 +27,9 @@ git pull
 
 echo "==> pulling present translations"
 ./bin/tx pull -a
-git add mediagoblin/i18n/
-git commit -m "Committing present MediaGoblin translations before pushing extracted messages"
+if git add mediagoblin/i18n/; then
+    git commit -m "Committing present MediaGoblin translations before pushing extracted messages";
+fi    
 
 echo "==> Extracting translations"
 ./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/
 
 echo "==> Committing to git"
-git add mediagoblin/i18n/
-git commit -m "Committing extracted and compiled translations"
+if git add mediagoblin/i18n/; then
+    git commit -m "Committing extracted and compiled translations";
+fi