check_utf8.sh: don't check the second Lua bytecode test scenario
This avoids the other file with binary data.
(cherry-picked from commit 212601deab
)
This commit is contained in:
parent
81d6970195
commit
945a386c25
1 changed files with 2 additions and 1 deletions
|
@ -5,7 +5,8 @@
|
|||
exit_code=0
|
||||
|
||||
find src/ -type f -print0 | xargs -0 isutf8 -- || exit_code=1
|
||||
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 -- || exit_code=1
|
||||
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 -- || exit_code=1
|
||||
find po/ -type f -print0 | xargs -0 isutf8 -- || exit_code=1
|
||||
|
||||
isutf8 changelog.md || exit_code=1
|
||||
|
|
Loading…
Add table
Reference in a new issue