Revert "lib.sh: use eval for the command in x_"

This reverts commit 7c98661271.

Signed-off-by: Leah Rowe <leah@libreboot.org>
25.04_branch
Leah Rowe 2025-04-13 05:15:13 +01:00
parent 0aace67a54
commit d65d93b300
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ err_()
exit 1
}
x_() {
[ $# -lt 1 ] || eval "$@" || $err "Unhandled error on: $(echo "$@")"; :
[ $# -lt 1 ] || "$@" || $err "Unhandled error for: $(echo "$@")"; :
}
xbmkpwd="`pwd`" || $err "Cannot generate PWD"