Do not fail the translation CI job in case of errors

This commit is contained in:
Thomas Bétous 2021-09-03 18:23:43 +02:00
parent 49b6b0549d
commit 0bf1bcf9fb
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ translation:
# We cannot use a simple "find ... -exec msgcmp {} strings.po" because it
# would always return 0 as exit code
script:
- files=$(find . -name strings.po -not -path './resources/language/resource.language.en_gb/*') && for file in $files; do echo -e "\n\033[94mChecking translation file $file\033[0m"; msgcmp $file ./resources/language/resource.language.en_gb/strings.po; done
- files=$(find . -name strings.po -not -path './resources/language/resource.language.en_gb/*') && for file in $files; do echo -e "\n\033[94mChecking translation file $file\033[0m"; msgcmp $file ./resources/language/resource.language.en_gb/strings.po || continue; done
# Pre-release job: will be available in all the merge requests with release
# branches in order to verify the release can be actually created. The