diff --git a/ci/txpull.sh b/ci/txpull.sh index 0f4a2aa47..d7e8a07c1 100755 --- a/ci/txpull.sh +++ b/ci/txpull.sh @@ -55,7 +55,7 @@ done # .tx/config file to locate files, and overwrites them in the # filesystem with new (merged) translations. export QT_SELECT=5 -tx pull --force --source --all +tx pull --force --source --all || exit 1 ### CLEANUP TRANSLATIONS diff --git a/ci/txpush.sh b/ci/txpush.sh index 1a0a7249b..f262eaeec 100755 --- a/ci/txpush.sh +++ b/ci/txpush.sh @@ -108,8 +108,8 @@ if test -n "$XMLLINT" ; then $XMLLINT --c14n11 "$TS_FILE" | { echo "" ; cat - ; } | $XMLLINT --format --encode utf-8 -o "$TS_FILE".new - && mv "$TS_FILE".new "$TS_FILE" fi -tx push --source --no-interactive -r calamares.calamares -tx push --source --no-interactive -r calamares.fdo +tx push --source --no-interactive -r calamares.calamares || exit 1 +tx push --source --no-interactive -r calamares.fdo || exit 1 ### PYTHON MODULES