Merge commit '0c2677e8fecad9bf904fca32b0319068d3eaa186' into prow

This commit is contained in:
Patrick Ohly
2019-04-11 12:04:16 +02:00

View File

@@ -143,11 +143,11 @@ test-shellcheck:
@ ret=0; \
if ! command -v docker; then \
echo "skipped, no Docker"; \
return 0; \
exit 0; \
fi; \
for dir in $(abspath $(TEST_SHELLCHECK_DIRS)); do \
echo; \
echo "$$dir:"; \
./release-tools/verify-shellcheck.sh "$$dir" || ret=1; \
done; \
return $$ret
exit $$ret