Skip to content

Commit

Permalink
vm_image_util: Fix variable quoting to create correct OEM sysext file
Browse files Browse the repository at this point in the history
The OEM sysext image file in the OEM partition had the version variable
name being part of the filename instead of the substituted version value
because of wrong quoting when the fixed string got replaced by ${…}.
  • Loading branch information
pothos committed Sep 14, 2023
1 parent fc3edbc commit d711725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_library/vm_image_util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ install_oem_sysext() {
local built_sysext_dir="${FLAGS_to}/${oem_sysext}-sysext"
local built_sysext_filename="${oem_sysext}.raw"
local built_sysext_path="${built_sysext_dir}/${built_sysext_filename}"
local version='${FLATCAR_VERSION}'
local version="${FLATCAR_VERSION}"
local metapkg="coreos-base/${oem_sysext}"
local build_sysext_flags=(
--board="${BOARD}"
Expand Down

0 comments on commit d711725

Please sign in to comment.