From 01331db17f6e5886eb810c58ed259cb6ae398643 Mon Sep 17 00:00:00 2001 From: Leah Rowe <info@minifree.org> Date: Sun, 11 Aug 2024 21:19:04 +0100 Subject: [PATCH] lib.sh: more verbose error in x_ part of the command was cut off in the output Signed-off-by: Leah Rowe <info@minifree.org> --- include/lib.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/lib.sh b/include/lib.sh index 2c9cd0d..c5df639 100644 --- a/include/lib.sh +++ b/include/lib.sh @@ -103,7 +103,8 @@ expr "X$XBMK_THREADS" : "X-\{0,1\}[0123456789][0123456789]*$" \ 1>/dev/null 2>/dev/null || export XBMK_THREADS=1 # user gave a non-integer x_() { - [ $# -lt 1 ] || $@ || $err "Unhandled non-zero exit: $@"; return 0 + [ $# -lt 1 ] || $@ || \ + $err "Unhandled non-zero exit: $(echo "$@")"; return 0 } [ -e ".git" ] || [ -f "version" ] || printf "unknown\n" > version || \ -- GitLab