From f128d3baf7e010b5cf072eef4586abb2832f867b Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Wed, 29 Jul 2020 17:04:46 +0200 Subject: [PATCH] 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. --- Meta/check-style.sh | 1 + 1 file changed, 1 insertion(+) 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' \ )