From 0fad3497b82d9225468835d1b27717050ca6de46 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sat, 7 Oct 2023 05:29:44 +0100 Subject: build/fw/coreboot: fix error "unexpected operator" Signed-off-by: Leah Rowe --- script/build/fw/coreboot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script') diff --git a/script/build/fw/coreboot b/script/build/fw/coreboot index 323fc40d..d0357c59 100755 --- a/script/build/fw/coreboot +++ b/script/build/fw/coreboot @@ -58,7 +58,7 @@ main() targets="* bin/${board}\n${targets}" done - [ -z ${targets} ] && err "No ROM images were compiled" + [ -z "${targets}" ] && err "No ROM images were compiled" printf "\nROM images available in these directories:\n" printf "${targets}^^ ROM images available in these directories.\n\n" } -- cgit v1.2.1