mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 22:12:40 +02:00
lib.sh: use eval for the command in x_
Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ err_()
|
||||
exit 1
|
||||
}
|
||||
x_() {
|
||||
[ $# -lt 1 ] || "$@" || $err "Unhandled error for: $(echo "$@")"; :
|
||||
[ $# -lt 1 ] || eval "$@" || $err "Unhandled error on: $(echo "$@")"; :
|
||||
}
|
||||
|
||||
xbmkpwd="`pwd`" || $err "Cannot generate PWD"
|
||||
|
||||
Reference in New Issue
Block a user