Fred Reitberger has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/61460 )
Change subject: util/lint/lint-stable-003-whitespace ......................................................................
util/lint/lint-stable-003-whitespace
Adding gif files to the whitespace exclude list, to prevent issue where commits were failing due to binary files.
Change-Id: I56679780348579d01c81c6f1677e4ea456315c9e Signed-off-by: Fred Reitberger reitbergerfred@gmail.com --- M util/lint/lint-stable-003-whitespace 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/61460/1
diff --git a/util/lint/lint-stable-003-whitespace b/util/lint/lint-stable-003-whitespace index fd4d0e4..6f9d788 100755 --- a/util/lint/lint-stable-003-whitespace +++ b/util/lint/lint-stable-003-whitespace @@ -5,7 +5,7 @@ # DESCR: Check for superfluous whitespace in the tree
LC_ALL=C export LC_ALL -EXCLUDELIST='^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|COPYING|LICENSE|README|_shipped$|.patch$|.bin$|.hex$|.jpg$|.ttf$|.woff$|.png$|.eot$|.vbt$|.ico$' +EXCLUDELIST='^src/vendorcode/|^util/kconfig/|^util/nvidia/cbootimage$|COPYING|LICENSE|README|_shipped$|.patch$|.bin$|.hex$|.jpg$|.gif$|.ttf$|.woff$|.png$|.eot$|.vbt$|.ico$' INCLUDELIST="src util payloads Makefile* toolchain.inc tests"
# shellcheck disable=SC2086,SC2046