Since all (false positives for) bashisms are gone, making the test target fail on bashisms.
This commit is contained in:
parent
1566a511b0
commit
d0663f3cbd
3
Makefile
3
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 \
|
||||
|
|
Loading…
Reference in New Issue