summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2011-08-08 20:59:45 +0200
committerDaniel Baumann <daniel@debian.org>2011-08-08 21:04:20 +0200
commitd0663f3cbd2b686076d8003aaf5ea875ebd35f16 (patch)
tree0fd5f6d9b64363b7c228710bdf0d2dda335a632f /Makefile
parent1566a511b09231a6af9759f85c1d148eecdb4d16 (diff)
downloadvyos-live-build-d0663f3cbd2b686076d8003aaf5ea875ebd35f16.tar.gz
vyos-live-build-d0663f3cbd2b686076d8003aaf5ea875ebd35f16.zip
Since all (false positives for) bashisms are gone, making the test target fail on bashisms.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 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 \