Skip to content

Commit b65553b

Browse files
authored
Don't fail on hunspell output
1 parent 9815791 commit b65553b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ jobs:
237237
dirs=$(find . -type d -not \( -path './.git*' -o -path './.tx*' \) | sort)
238238
for dir in $dirs; do
239239
echo "::group::{$dir}"
240-
pushd $dir
240+
pushd -n $dir
241241
po_files=$(find -maxdepth 1 -name '*.po' | sort)
242-
python ../../../../../scripts/check_spell.py $po_files
242+
python ../../../../../scripts/check_spell.py $po_files || :
243243
popd
244244
echo "::endgroup::"
245245
done

0 commit comments

Comments
 (0)