We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6850fcf commit 3064fd7Copy full SHA for 3064fd7
Makefile
@@ -83,16 +83,17 @@ release: $(PROJECT)-$(VERSION).tar.sign
83
84
check:
85
@cd tests; \
86
+ rc=0; \
87
for sh in $${CHECK_SHELL:-/bin/sh /bin/dash /bin/bash /bin/bash3 /bin/bash4 /bin/mksh /bin/lksh /bin/pdksh}; do \
88
[ -x "$$sh" ] || continue; \
89
export TEST_SHELL="$$sh"; \
90
echo "Running tests with $$sh"; \
91
if ! "$$sh" -efu ./runtests; then \
92
echo "Tests failed with $$sh"; \
93
echo; \
- exit 1; \
94
+ rc=1; \
95
fi; \
- done
96
+ done; exit $$rc;
97
@sed -n -e 's/^## \([^[:space:]]\+\)$$/\1/p' ${mddocs_TARGETS} |sort -uo "$(CURDIR)/.shell-funcs-documented"
98
@sed -n -e 's/^\([A-Za-z][A-Za-z0-9_]\+\)().*/\1/p' ${bin_TARGETS} |sort -uo "$(CURDIR)/.shell-funcs"
99
@comm -13 \
0 commit comments