Update 80-configuration.sh

This commit is contained in:
Alexandre
2022-02-04 23:06:49 +01:00
committed by GitHub
parent bed3d4b44f
commit 28ddd1b675

View File

@@ -32,8 +32,8 @@ if bashio::config.has_value 'additional_apps'; then
NEWAPPS=$(bashio::config 'additional_apps')
for APP in ${NEWAPPS//,/ }; do
bashio::log.green "... $APP"
apk add --no-cache "$APP" &>/dev/null || apt-get install -yqq "$APP" &>/dev/null \
# shellcheck disable=SC2015
apk add --no-cache "$APP" &>/dev/null || apt-get install -yqq "$APP" &>/dev/null \
&& bashio::log.green "... done" || bashio::log.red "... not successful, please check package name"
done
fi