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>
This commit is contained in:
Leah Rowe
2025-01-03 15:43:27 +00:00
parent 5284f20b98
commit ec6bcc1fba
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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