flatcar / sysext-bakery

Recipes for baking systemd-sysext images
Apache License 2.0
73 stars 39 forks source link

bake_flatcar_image: Fix check for empty sysext list #56

Closed jepio closed 7 months ago

jepio commented 7 months ago

"${sysexts[@]}" expands every argument separately, while we need all array members to be expanded into a single string for the test to work. "${sysexts[*]}" is what we want.

jepio commented 7 months ago

Hold on

jepio commented 7 months ago

Now it's fixed.