Skip to content

Commit

Permalink
Update run_translation_verification.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
oshi97 authored Jan 31, 2022
1 parent 7460344 commit 63e1d6b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/run_translation_verification.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,10 @@ if [[ $GITHUB_REF_NAME == release/*
then
for po_file in *.po
do
msgcmp $po_file messages.pot
exit_code=$(( exit_code + $? ))
msgcmp $po_file messages.pot || exit_code=1
done
else
echo "Skipping the verification that all translations are present"
fi

exit $exit_code
exit $exit_code

0 comments on commit 63e1d6b

Please sign in to comment.