aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/justfile b/justfile
index 8ebf5ac..3011133 100644
--- a/justfile
+++ b/justfile
@@ -2,6 +2,7 @@ all: build
build N="1":
#!/usr/bin/env bash
+ set -e
if [[ {{N}} = 1 ]]; then
gcc -g -O0 -o ducc main.c
else
@@ -28,6 +29,7 @@ test-self-hosted: build-upto-5-gen
test TESTCASE="all" $BIN="ducc": build
#!/usr/bin/env bash
+ set -e
if [[ {{TESTCASE}} = all ]]; then
bash tests/all.sh
else