From 04c3bc53b6635490169c016e96f20036bbcaf69d Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 10 Sep 2026 20:08:08 +0100 Subject: [PATCH] mk: add error exit not needed at the moment, since we ensure that the functions always exit with error under fault condition. they always return zero. nevertheless, this might catch some unexpected behaviour in the future. Signed-off-by: Leah Rowe --- mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk b/mk index b4147399..61c0020b 100755 --- a/mk +++ b/mk @@ -23,7 +23,7 @@ cd "${commandv%/*}" || exit 1 if xeq main "${1-}" \ $xbcommands; then - "$@" + "$@" || exit 1 exit 0 fi