diff options
author | Leah Rowe <leah@libreboot.org> | 2025-04-23 04:12:53 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-04-23 04:12:53 +0100 |
commit | 0c5c5ffc873f7818930115a37b8b2a592a6e37a2 (patch) | |
tree | 3bde96848c2500940fada6b5b77e147fb5d18bf8 | |
parent | 83022b6ba83d73a8539016b810e3926afc1eba7e (diff) |
lib.sh: simplify mk()
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/lib.sh | 2 |
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; : } |