mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
Revert "lib.sh: use eval for the command in x_"
This reverts commit 3bfdecdc75.
The commit that this reverses, caused sch5545 ec firmware
downloads to fail, due to globbing.
This commit is contained in:
+1
-1
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user