From 8bf732bb6498d9c35c4976ac65ce63c94c51d7ab Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Thu, 6 Jun 2024 12:23:01 +0200 Subject: [build] return exit status --- build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.c b/build.c index c49a446..a100596 100755 --- a/build.c +++ b/build.c @@ -2,7 +2,7 @@ SRC=${0##*/} BIN=${SRC%.*} gcc -o $BIN.tmp $SRC && ./$BIN.tmp $@ && rm $BIN.tmp -exit 0 +exit $? #endif #include -- cgit v1.2.3