Skip to content

Commit e765375

Browse files
authored
Merge pull request #2968 from flatcar/tormath1/hv
app-emulation/hv-daemons: use correct array syntax
2 parents 0778d23 + 51e4ad1 commit e765375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk_container/src/third_party/coreos-overlay/app-emulation/hv-daemons/hv-daemons-9999.ebuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ src_compile() {
2020
src_install() {
2121
local -a HV_DAEMONS=(hv_vss_daemon hv_kvp_daemon hv_fcopy_daemon hv_fcopy_uio_daemon)
2222
local HV_DAEMON
23-
for HV_DAEMON in "$HV_DAEMONS[@]"
23+
for HV_DAEMON in "${HV_DAEMONS[@]}"
2424
do
2525
if [ -f "${S}/build/tools/hv/${HV_DAEMON}" ]; then
2626
dobin "${S}/build/tools/hv/${HV_DAEMON}"

0 commit comments

Comments
 (0)