Merge pull request #1027 from vutny/fix-alpine-stable

Alpine Linux: fix installation of multiple pkgs ("stable" bootstrap)
This commit is contained in:
Nicole Thomas 2017-02-09 08:55:38 -07:00 committed by GitHub
commit 073fc6191d

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
}