Skip to content

Commit

Permalink
check_utf8.sh: don't check the second Lua bytecode test scenario
Browse files Browse the repository at this point in the history
This avoids the other file with binary data.
  • Loading branch information
jyrkive committed Jul 27, 2018
1 parent ad90f36 commit b869b76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/travis/check_utf8.sh
Expand Up @@ -6,7 +6,8 @@
# wesnoth repository.
set -e
find src/ -type f -print0 | xargs -0 isutf8 --
find data/ -not -name "*.png" -not -name "*.ogg" -not -name "*.jpg" -not -name "*.wav" -not -name "*.gif" -not -name "*.xcf" -not -name "*.bin" -type f -print0 | xargs -0 isutf8 --
find data/ -not -name "*.png" -not -name "*.ogg" -not -name "*.jpg" -not -name "*.wav" -not -name "*.gif" -not -name "*.xcf" -not -name "*.bin" \
-not -name "test_cve_2018_1999023_2.cfg" -type f -print0 | xargs -0 isutf8 --
find po/ -type f -print0 | xargs -0 isutf8 --
isutf8 changelog
isutf8 RELEASE_NOTES

0 comments on commit b869b76

Please sign in to comment.