include/err x_(): more verbose error message

Signed-off-by: Leah Rowe <leah@libreboot.org>
btrfsvols
Leah Rowe 2023-10-02 04:57:51 +01:00
parent 8886f9958f
commit d38b958d7a
1 changed files with 2 additions and 2 deletions

View File

@ -2,10 +2,10 @@
# SPDX-FileCopyrightText: 2022, 2023 Leah Rowe <leah@libreboot.org>
x_() {
[ $# -lt 1 ] || ${@} || err "${@}"
[ $# -lt 1 ] || ${@} || err "non-zero exit status: ${@}"
}
xx_() {
[ $# -lt 1 ] || ${@} || fail "${@}"
[ $# -lt 1 ] || ${@} || fail "non-zero exit status: ${@}"
}
setvars()