mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-23 02:01:36 +03:00
Don't run check_strings when empty.
This commit is contained in:
parent
30b9900ca8
commit
0716dfb7f2
2
.github/workflows/check-strings.yml
vendored
2
.github/workflows/check-strings.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
||||
|
||||
- name: Check remaining locales
|
||||
run: |
|
||||
find lib/l10n/ -name "app_en.arb" -prune -o -name "*.arb" -print0 | xargs -n 1 -0 ./check_strings.py >> $GITHUB_STEP_SUMMARY || echo "::warning::Problems in locales"
|
||||
find lib/l10n/ -name "app_en.arb" -prune -o -name "*.arb" -print0 | xargs -r -n 1 -0 ./check_strings.py >> $GITHUB_STEP_SUMMARY || echo "::warning::Problems in locales"
|
||||
|
||||
- uses: subosito/flutter-action@v2
|
||||
with:
|
||||
|
Loading…
Reference in New Issue
Block a user