diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-16 10:42:10 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-16 10:42:10 -0400 | 
| commit | d6e390bc5c944b8f2ce96b6d79533d60af172918 (patch) | |
| tree | cb99923c8cba0b10776650ffe2b277a9177057d8 | |
| parent | 548958bcafa572fdfbb147b1bd590c02f9bb4b40 (diff) | |
| parent | 41674d20acd2a7d9f28acf5e9cb183d803a47a65 (diff) | |
Merge pull request #1507 from FearlessTobi/port-4327
Port citra-emu/citra#4327: "travis: Ignore binary files when checking for trailing whitespace"
| -rwxr-xr-x | .travis/clang-format/script.sh | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/.travis/clang-format/script.sh b/.travis/clang-format/script.sh index 0f6e8e6e4..3eff6322f 100755 --- a/.travis/clang-format/script.sh +++ b/.travis/clang-format/script.sh @@ -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 | 
