Skip to content

Commit

Permalink
classes: kernel-balena-noimage: add extra space
Browse files Browse the repository at this point in the history
When appending a variable a space needs to be prefixed to create a
space separated list.

Change-type: patch
Signed-off-by: Alex Gonzalez <[email protected]>
  • Loading branch information
alexgg committed Mar 11, 2024
1 parent ae98ddf commit 3696a0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
# the initramfs bundled kernel image
python __anonymous() {
kernel_image_type = d.getVar('KERNEL_IMAGETYPE')
d.appendVar('PACKAGE_EXCLUDE', 'kernel-image-%s-*' % kernel_image_type.lower())
d.appendVar('PACKAGE_EXCLUDE', ' kernel-image-%s-*' % kernel_image_type.lower())
}

0 comments on commit 3696a0d

Please sign in to comment.