diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2020-07-29 17:04:46 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-07-29 17:36:21 +0200 |
commit | f128d3baf7e010b5cf072eef4586abb2832f867b (patch) | |
tree | 17f44aa905d7c756c952c639aa46e01a6e628eaa /Meta/check-style.sh | |
parent | c7652a21665718872afcc42c7e95eae0d2a083ec (diff) | |
download | serenity-f128d3baf7e010b5cf072eef4586abb2832f867b.zip |
Meta: make check-style.sh ignore Libraries/LibCore/puff.cpp
This file was formerly named `Libraries/LibCore/puff.c` and it was not
checked by `check-style.sh` because it only checks .h and .cpp files.
Since this file was not written by us, we shouldn't check its style.
This file was also causing our Travis builds to fail.
Diffstat (limited to 'Meta/check-style.sh')
-rwxr-xr-x | Meta/check-style.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/check-style.sh b/Meta/check-style.sh index 810b335e30..55d5c7bf81 100755 --- a/Meta/check-style.sh +++ b/Meta/check-style.sh @@ -37,6 +37,7 @@ done < <(git ls-files -- \ ':!:Kernel/FileSystem/ext2_fs.h' \ ':!:Libraries/LibC/getopt.cpp' \ ':!:Libraries/LibCore/puff.h' \ + ':!:Libraries/LibCore/puff.cpp' \ ':!:Libraries/LibELF/exec_elf.h' \ ) |