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."
|
@echo " done."
|
||||||
|
|
||||||
@# We can't just fail yet on bashisms (FIXME)
|
|
||||||
@echo -n "Checking for bashisms"
|
@echo -n "Checking for bashisms"
|
||||||
|
|
||||||
@if [ -x /usr/bin/checkbashisms ]; \
|
@if [ -x /usr/bin/checkbashisms ]; \
|
||||||
then \
|
then \
|
||||||
for SCRIPT in $(SCRIPTS); \
|
for SCRIPT in $(SCRIPTS); \
|
||||||
do \
|
do \
|
||||||
checkbashisms -f -x $${SCRIPT} || true; \
|
checkbashisms -f -x $${SCRIPT}; \
|
||||||
echo -n "."; \
|
echo -n "."; \
|
||||||
done; \
|
done; \
|
||||||
else \
|
else \
|
||||||
|
|
Loading…
Reference in New Issue