Skip to content

Commit f27a79a

Browse files
committed
Makefile: fix test not working in Github actions
`docker run` failed due to `the input device is not a TTY` Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
1 parent c7e4dd9 commit f27a79a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ shellcheck: $(FILES)
3333
.PHONY: test
3434
test: $(foreach channel,$(CHANNELS),build/$(channel)/install.sh)
3535
for file in $^; do \
36-
(set -x; docker run --rm -it \
36+
(set -eux; docker run --rm -i \
3737
$(VOLUME_MOUNTS) \
3838
--privileged \
3939
-e HOME=/tmp \

0 commit comments

Comments
 (0)