build/boot/roms: remove wrong parentheses

will pass all args as a single arg, which is wrong

fix that

Signed-off-by: Leah Rowe <leah@libreboot.org>
fsdg20230625
Leah Rowe 2023-06-20 01:15:28 +01:00
parent 794def924c
commit 652f3ba379
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ buildrom() {
./blobutil download ${board} || exit 1
if [ -d "resources/coreboot/${board}/" ]; then
./build boot roms_helper "${board}${opts}"
./build boot roms_helper ${board}${opts}
else
printf "\nbuild/roms: target not defined: %s\n" ${board}
die "Run: ./build boot roms list"