From 8fdfb26aca5c3722ee6d3441a5d9f047bc605b13 Mon Sep 17 00:00:00 2001 From: Giuseppe Di Natale Date: Fri, 31 Mar 2017 20:45:25 -0400 Subject: [PATCH] Prevent commitcheck.sh from running twice A stray semicolon was causing commitcheck.sh to run twice when running make checkstyle. Signed-off-by: Giuseppe Di Natale --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index cea264acf273..5545cd67328e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ shellcheck: shellcheck --exclude=SC1090 --format gcc scripts/paxcheck.sh \ scripts/zloop.sh \ scripts/zfs-tests.sh \ - scripts/zfs.sh; \ + scripts/zfs.sh \ scripts/commitcheck.sh; \ (find cmd/zed/zed.d/*.sh -type f) | \ grep -v 'zfs-script-config' | \