From a1cf7897c09b798109f5c6fa9df98c2806c13375 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 7 Apr 2018 06:57:03 +0930 Subject: [PATCH] shellcheck: restore the check. Accidentally disabled in 9c3691340fa430ed1daf08dc40f76bd7369f66cc. Signed-off-by: Rusty Russell --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b26377f3a..8a1892839 100644 --- a/Makefile +++ b/Makefile @@ -266,7 +266,7 @@ check-cppcheck: .cppcheck-suppress @trap 'rm -f .cppcheck-suppress' 0; git ls-files -- "*.c" "*.h" | grep -vE '^ccan/' | xargs cppcheck -q --language=c --std=c11 --error-exitcode=1 --suppressions-list=.cppcheck-suppress check-shellcheck: - true||git ls-files -- "*.sh" | xargs shellcheck + git ls-files -- "*.sh" | xargs shellcheck check-source: check-makefile check-source-bolt check-whitespace check-markdown check-spelling check-python check-includes check-cppcheck check-shellcheck