Merge pull request #1507 from FearlessTobi/port-4327

Port citra-emu/citra#4327: "travis: Ignore binary files when checking for trailing whitespace"
This commit is contained in:
bunnei 2018-10-16 10:42:10 -04:00 committed by GitHub
commit d6e390bc5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
#!/bin/bash -ex
if grep -nr '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \
if grep -nrI '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \
dist/*.svg dist/*.xml; then
echo Trailing whitespace found, aborting
exit 1