From 0ecbdf342154a7a35d1a38c30d977895f3f8e8da Mon Sep 17 00:00:00 2001 From: lisa neigut Date: Fri, 5 Oct 2018 13:15:07 -0700 Subject: [PATCH] makefile: don't print shellcheck to stdout --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 10bcbc757..de5b4d547 100644 --- a/Makefile +++ b/Makefile @@ -285,7 +285,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: - git ls-files -- "*.sh" | xargs shellcheck + @git ls-files -- "*.sh" | xargs shellcheck check-setup_locale: @tools/check-setup_locale.sh