diff options
author | Leah Rowe <leah@libreboot.org> | 2023-06-20 01:15:28 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-06-20 01:15:28 +0100 |
commit | 652f3ba379b7ca9b1d35113b97818475308da25e (patch) | |
tree | b1b3b41f0598d7fda53f8732fe3301e792d3763f /resources/scripts/build/boot | |
parent | 794def924c0659c8855790ca086ce13d2e4d69e0 (diff) |
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>
Diffstat (limited to 'resources/scripts/build/boot')
-rwxr-xr-x | resources/scripts/build/boot/roms | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms index 3ad1d174..16ce698a 100755 --- a/resources/scripts/build/boot/roms +++ b/resources/scripts/build/boot/roms @@ -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" |