From 0a9a900ee7e75ed4e2374994957b2eda463ce8fc Mon Sep 17 00:00:00 2001 From: Ruben Momoa Date: Fri, 23 Aug 2024 10:00:32 +0200 Subject: [PATCH] allow want word splitting for packages and extensions --- build/start-container.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build/start-container.sh b/build/start-container.sh index e60fb2a..2ea4966 100644 --- a/build/start-container.sh +++ b/build/start-container.sh @@ -6,10 +6,12 @@ set -e # install extra packages and extensions on first boot if [[ ! -f /etc/first_boot ]]; then if [[ -n "${EXTRA_APK_PACKAGES// /}" ]]; then - apk add --no-cache "$EXTRA_APK_PACKAGES" + # shellcheck disable=SC2086 + apk add --no-cache $EXTRA_APK_PACKAGES fi if [[ -n "${EXTRA_PHP_EXTENSIONS// /}" ]]; then - docker-php-ext-install "$EXTRA_PHP_EXTENSIONS" + # shellcheck disable=SC2086 + docker-php-ext-install $EXTRA_PHP_EXTENSIONS fi touch /etc/first_boot fi