From f27a79a8755ef8c213c1b55101a4f3ce2a60632a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 9 Oct 2025 10:24:46 +0200 Subject: [PATCH] Makefile: fix `test` not working in Github actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `docker run` failed due to `the input device is not a TTY` Signed-off-by: Paweł Gronowski --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1c463a4a..295879df 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ shellcheck: $(FILES) .PHONY: test test: $(foreach channel,$(CHANNELS),build/$(channel)/install.sh) for file in $^; do \ - (set -x; docker run --rm -it \ + (set -eux; docker run --rm -i \ $(VOLUME_MOUNTS) \ --privileged \ -e HOME=/tmp \