From f05206b37ffdd8665ab1ff6141dfd5682c8d17d8 Mon Sep 17 00:00:00 2001 From: Denys Havrysh Date: Thu, 9 Feb 2017 12:01:37 +0200 Subject: [PATCH] Alpine Linux: fix installation of multiple pkgs ("stable" bootstrap mode) --- bootstrap-salt.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index c674d70..f252dae 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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 }