Skip to content

Commit

Permalink
bake_flatcar_image: Pass all sysexts to install_sysexts
Browse files Browse the repository at this point in the history
$sysexts is an array, so we need to specify the @ index to have all
entries passed to the function invocation. The current version passes
only the first entry.

Signed-off-by: Jeremi Piotrowski <[email protected]>
  • Loading branch information
jepio committed Apr 10, 2024
1 parent e24232f commit bbe3436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bake_flatcar_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ mkdir "${workdir}"
cd "${workdir}"

download_all "$board" "${vendor}" "$release"
install_sysexts "${install_to}" "${sysexts}"
install_sysexts "${install_to}" "${sysexts[@]}"
create_vendor_image "$board" "${vendor}"
rm -f *.sig *.squashfs
)
Expand Down

0 comments on commit bbe3436

Please sign in to comment.