summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-04-23 04:12:53 +0100
committerLeah Rowe <leah@libreboot.org>2025-04-23 04:12:53 +0100
commit0c5c5ffc873f7818930115a37b8b2a592a6e37a2 (patch)
tree3bde96848c2500940fada6b5b77e147fb5d18bf8
parent83022b6ba83d73a8539016b810e3926afc1eba7e (diff)
lib.sh: simplify mk()
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r--include/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 86f03cc2..739823a9 100644
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -290,6 +290,6 @@ mk()
{
mk_flag="$1" || $err "No argument given"
shift 1 && for mk_arg in "$@"; do
- ./mk $mk_flag $mk_arg || $err "./mk $mk_flag $mk_arg"; :
+ x_ ./mk $mk_flag $mk_arg
done; :
}