Merge pull request #5 from nupplaphil/bug/transifex

Fix "check-addons.sh" file
This commit is contained in:
Hypolite Petovan 2021-05-24 05:58:00 -04:00 committed by GitHub
commit e30766ab28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ cd $ADDON_DIR
# Skip first 4 lines in possible diff, because they're header
# Skip all lines of the git diff starting with "@@" or comments or starting "POT-Creation-Date"
if [[ $(git diff -U0 **/messages.po | grep -vE '^(@@|\-"POT-Creation-Date|\+"POT-Creation-Date|\-#|\+#)' | wc -l) -gt 4 ]]; then
if [[ $(git diff -U0 **/messages.po | grep -vE '^(@@|\-"POT-Creation-Date|\+"POT-Creation-Date|\-#|\+#|\-\-\-|\+\+\+|index\ |diff\ \-\-git)' | wc -l) -gt 0 ]]; then
echo "$(git diff **/messages.po)"
exit 1
else
echo "Nothing to update"
echo "\033[1mNothing to update\033[0m"
fi

View File

@ -9,5 +9,5 @@ if [[ $(git diff -U0 ./view/lang/C/messages.po | grep -vE '^(@@|\-"POT-Creation-
echo "$(git diff ./view/lang/C/messages.po)"
exit 1
else
echo "Nothing to update"
echo "\033[1mNothing to update\033[0m"
fi