Alpine Linux: fix installation of multiple pkgs ("stable" bootstrap mode)

This commit is contained in:
Denys Havrysh 2017-02-09 12:01:37 +02:00
parent c53a056a75
commit f05206b37f

View file

@ -4248,7 +4248,8 @@ install_alpine_linux_stable() {
__PACKAGES="${__PACKAGES} salt-syndic"
fi
apk -U add "${__PACKAGES}" || return 1
# shellcheck disable=SC2086
apk -U add ${__PACKAGES} || return 1
return 0
}