From eb940bc2eb4dcba8b63838d9cb36ccc52f13c58f Mon Sep 17 00:00:00 2001 From: Alex Karle Date: Fri, 3 Dec 2021 00:40:01 -0500 Subject: [PATCH] make: Don't error if solution doesn't exist The `test` invocation returning false caused a failure! --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e7ea43b..7f29a52 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ build: $(TARGETS) run: build @for d in $(DAY)/; do \ for sol in a.py a b.py b; do \ - [ -e $$d/$$sol ] && printf "%-7s %s\n" "$${d}$$sol:" `$$d/$$sol < $$d/input`; \ + [ -e $$d/$$sol ] && printf "%-7s %s\n" "$${d}$$sol:" `$$d/$$sol < $$d/input` || true; \ done; \ done -- libgit2 1.8.1