diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2017-05-22 07:28:35 +0200 |
---|---|---|
committer | Loic Blot <loic.blot@unix-experience.fr> | 2017-05-22 07:28:35 +0200 |
commit | 05309229b847ea4f289328890176d22c4655348b (patch) | |
tree | 0f56abcd32228adf0df9e42e9764decf40f845fa /util | |
parent | 39f4a2f607d44738d60db84eba4b30e3d7450204 (diff) | |
download | minetest-05309229b847ea4f289328890176d22c4655348b.tar.gz minetest-05309229b847ea4f289328890176d22c4655348b.tar.bz2 minetest-05309229b847ea4f289328890176d22c4655348b.zip |
LINT fix & check all files with clang-format
Seems the diff mode doesn't work well, PR are detected as working whereas in master it's shown it's problematic (and really problematic). Use same check everywhere
Diffstat (limited to 'util')
-rw-r--r-- | util/travis/lint.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/util/travis/lint.sh b/util/travis/lint.sh index 4e816bd94..cd5f41779 100644 --- a/util/travis/lint.sh +++ b/util/travis/lint.sh @@ -9,13 +9,7 @@ function perform_lint() { echo "LINT: Using binary $CLANG_FORMAT" CLANG_FORMAT_WHITELIST="util/travis/clang-format-whitelist.txt" - if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then - # Get list of every file modified in this pull request - files_to_lint="$(git diff --name-only --diff-filter=ACMRTUXB $TRAVIS_COMMIT_RANGE | grep '^src/[^.]*[.]\(cpp\|h\)$' | true)" - else - # Check everything for branch pushes - files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')" - fi + files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')" local errorcount=0 local fail=0 |