From d0663f3cbd2b686076d8003aaf5ea875ebd35f16 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 8 Aug 2011 20:59:45 +0200 Subject: [PATCH] Since all (false positives for) bashisms are gone, making the test target fail on bashisms. --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e3d5ec06d..bdbaa539d 100644 --- a/Makefile +++ b/Makefile @@ -19,14 +19,13 @@ test: @echo " done." - @# We can't just fail yet on bashisms (FIXME) @echo -n "Checking for bashisms" @if [ -x /usr/bin/checkbashisms ]; \ then \ for SCRIPT in $(SCRIPTS); \ do \ - checkbashisms -f -x $${SCRIPT} || true; \ + checkbashisms -f -x $${SCRIPT}; \ echo -n "."; \ done; \ else \