From dfc809abb4bf24569c139a3ebf1b9d311128e157 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Sun, 1 Jan 2023 23:16:15 +0000 Subject: [PATCH] Fix make exiting 1 if test script is missing --- .make-and-exec-Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.make-and-exec-Makefile b/.make-and-exec-Makefile index 4368047..77d7b97 100644 --- a/.make-and-exec-Makefile +++ b/.make-and-exec-Makefile @@ -1,4 +1,4 @@ .make-and-exec-binaries/%: %.c mkdir -p .make-and-exec-binaries $(CC) -O3 -o $@ $< $(CFLAGS) - [ -f ./.$(notdir $(@))-test ] && ./.$(notdir $(@))-test + [ -f ./.$(notdir $(@))-test ] && ./.$(notdir $(@))-test || true