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 <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-09-10 20:08:08 +01:00
parent d722a02cda
commit 04c3bc53b6
+1 -1
View File
@@ -23,7 +23,7 @@ cd "${commandv%/*}" || exit 1
if xeq main "${1-}" \
$xbcommands; then
"$@"
"$@" || exit 1
exit 0
fi