mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-25 15:41:04 +02:00
app-emulation/hv-daemons: use correct array syntax
The array is not expanded without the brackets. Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
This commit is contained in:
parent
0778d2385b
commit
51e4ad1cd6
@ -20,7 +20,7 @@ src_compile() {
|
||||
src_install() {
|
||||
local -a HV_DAEMONS=(hv_vss_daemon hv_kvp_daemon hv_fcopy_daemon hv_fcopy_uio_daemon)
|
||||
local HV_DAEMON
|
||||
for HV_DAEMON in "$HV_DAEMONS[@]"
|
||||
for HV_DAEMON in "${HV_DAEMONS[@]}"
|
||||
do
|
||||
if [ -f "${S}/build/tools/hv/${HV_DAEMON}" ]; then
|
||||
dobin "${S}/build/tools/hv/${HV_DAEMON}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user