diff options
| author | 2018-10-16 10:42:10 -0400 | |
|---|---|---|
| committer | 2018-10-16 10:42:10 -0400 | |
| commit | d6e390bc5c944b8f2ce96b6d79533d60af172918 (patch) | |
| tree | cb99923c8cba0b10776650ffe2b277a9177057d8 | |
| parent | Merge pull request #1473 from lioncash/cmake (diff) | |
| parent | travis: Ignore binary files when checking for trailing whitespace (diff) | |
| download | yuzu-d6e390bc5c944b8f2ce96b6d79533d60af172918.tar.gz yuzu-d6e390bc5c944b8f2ce96b6d79533d60af172918.tar.xz yuzu-d6e390bc5c944b8f2ce96b6d79533d60af172918.zip | |
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 @@ | |||
| 1 | #!/bin/bash -ex | 1 | #!/bin/bash -ex |
| 2 | 2 | ||
| 3 | if grep -nr '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \ | 3 | if grep -nrI '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \ |
| 4 | dist/*.svg dist/*.xml; then | 4 | dist/*.svg dist/*.xml; then |
| 5 | echo Trailing whitespace found, aborting | 5 | echo Trailing whitespace found, aborting |
| 6 | exit 1 | 6 | exit 1 |