Skip to content

Commit

Permalink
Update push-checks.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed May 29, 2024
1 parent e902f6f commit a6706c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/push-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ jobs:
- name: translation checks
run: |
output=$(python ./scripts/find_localised_strings.py --compare-lang L10n/en.template --directory . --ignore coriolis-data)
echo "$output" > output.txt
echo "$output"
echo ${#output}
if [ -s output.txt ]; then
cat output.txt
if [ -z "$output" ]; then
cat "$output"
exit 1
fi

0 comments on commit a6706c1

Please sign in to comment.