Update 80-configuration.sh

This commit is contained in:
Alexandre
2023-09-03 10:19:15 +02:00
committed by GitHub
parent f0dcb46c11
commit b3dfba4e12

View File

@@ -8,7 +8,7 @@ if bashio::config.has_value 'additional_apps'; then
# hadolint ignore=SC2005
NEWAPPS=$(bashio::config 'additional_apps')
for packagestoinstall in ${NEWAPPS//,/ }; do
bashio::log.green "... $APP"
bashio::log.green "... $packagestoinstall"
if command -v "apk" &>/dev/null; then
apk add --no-cache "$packagestoinstall" &>/dev/null || (bashio::log.fatal "Error : $packagestoinstall not found")
elif command -v "apt" &>/dev/null; then