diff --git a/nextcloud/rootfs/etc/cont-init.d/99-add_packages.sh b/nextcloud/rootfs/etc/cont-init.d/99-add_packages.sh index 2ec006b3c..bf202dc1c 100644 --- a/nextcloud/rootfs/etc/cont-init.d/99-add_packages.sh +++ b/nextcloud/rootfs/etc/cont-init.d/99-add_packages.sh @@ -20,9 +20,11 @@ if bashio::config.has_value 'additional_apps'; then read -ra array <<< "$NEWAPPS" for element in "${array[@]}" do + # shellcheck disable=SC2295 APP="${element#${BASH_REMATCH[1]}}" [[ $element =~ $re ]] && \ bashio::log.green "... $APP" && \ + # shellcheck disable=SC2015 apk add --no-cache "$APP" || bashio::log.red "... not successful, please check $APP package name" done fi