Skip to content

Commit a00c5c3

Browse files
authored
Merge pull request #530 from vvoland/fix-make-test2
Makefile/test: Fix failure not being propagated
2 parents 66ec315 + 7e9571d commit a00c5c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ test: $(foreach channel,$(CHANNELS),build/$(channel)/install.sh)
4242
-e VERSION \
4343
-e CHANNEL \
4444
$(TEST_IMAGE) \
45-
sh $$file) | tail -n 30; \
45+
sh $$file) || exit $$?; \
4646
done
4747

4848
AWS?=docker run \

0 commit comments

Comments
 (0)