check_utf8.sh: don't check the second Lua bytecode test scenario
This avoids the other file with binary data.
This commit is contained in:
parent
ad90f368a3
commit
b869b760c4
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue