summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-01-03 15:43:27 +0000
committerLeah Rowe <leah@libreboot.org>2025-01-03 15:43:27 +0000
commitec6bcc1fba5fbdf8b19b3d1cf9711f3d4c9c3741 (patch)
tree8a3f60eec42953170e31e7fd727849615019d8b3 /build
parent5284f20b9811a65120837ab60e3ce02ca6937c37 (diff)
fix more unescaped quotes in eval
it should fix more build errors that might have appeared in the aforementioned revision, mentioned in the previous commit message Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'build')
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index 2fab248b..05fa0445 100755
--- a/build
+++ b/build
@@ -25,7 +25,7 @@ main()
for g in "command -v git" "git config --global user.name" \
"git config --global user.email" "git_init"; do
- eval "$g 1>/dev/null 2>/dev/null || $err \"Unconfigured: $g\""
+ eval "\"$g\" 1>/dev/null 2>/dev/null || $err \"FAILED: $g\""
done
case "${spath#script/}" in