summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2026-09-10 20:06:46 +0100
committerLeah Rowe <leah@libreboot.org>2026-09-10 20:06:46 +0100
commitd722a02cda208229d2ba21b3ae45305e9f76d3af (patch)
tree63d909f78d7057bad877e2a12e22cbeb32083ee6
parent6fe1d47fb370b27b1e76b93846630e6a7e60f2f0 (diff)
mk: remove redundant xrval variable
not needed. Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-xmk6
1 files changed, 1 insertions, 5 deletions
diff --git a/mk b/mk
index 22cf7660..b4147399 100755
--- a/mk
+++ b/mk
@@ -7,8 +7,6 @@
set -u -e
-xrval=0
-
(
xbarg0="$0"
[ "${xbarg0##*/}" = "$xbarg0" ] && \
@@ -37,6 +35,4 @@ x_ touch "$mkhelpercfg"
. "$mkhelpercfg"
$cmd
-) || xrval=1
-
-exit $xrval
+) || exit 1; :