From 4588bf8b5d2bb33b24aed32a5eea1701c6c198ba Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Wed, 19 Feb 2025 15:55:07 +0100 Subject: [PATCH] Patch the make file to fail on error --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a85d91b..f43de12 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,9 @@ test: $(GOTEST) ./... obitests: - @find obitests -name test.sh -exec bash {} \; + @for t in $$(find obitests -name test.sh -print) ; do \ + bash $${t} ;\ + done githubtests: obitools obitests