diff options
author | Daniel Baumann <daniel@debian.org> | 2011-08-08 20:59:45 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-08-08 21:04:20 +0200 |
commit | d0663f3cbd2b686076d8003aaf5ea875ebd35f16 (patch) | |
tree | 0fd5f6d9b64363b7c228710bdf0d2dda335a632f /Makefile | |
parent | 1566a511b09231a6af9759f85c1d148eecdb4d16 (diff) | |
download | vyos-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-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 \ |