From fdd0657cf30fef738e0fced5b8a7bdb54d8ef4e1 Mon Sep 17 00:00:00 2001 From: Jakob Stierhof Date: Wed, 30 Mar 2022 01:00:26 +0200 Subject: [PATCH] Remeis modification of removing cwd from load path breaks build When the cwd is not part of the load path --script does not find relative files. To circumvent this we need to prepend a ./ --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92335397..9c345003 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ test: # fails if any command produces exit code != 0 @for test in test/*.sl; do \ echo; \ echo $$test; \ - isis -g -n -q -10 --script $$test || exit 1; \ + isis -g -n -q -10 --script ./$$test || exit 1; \ done @awk -f test/number_of_if_endif_directives.awk share/isisscripts.sl -- GitLab