Update 80-configuration.sh

This commit is contained in:
Alexandre
2022-02-07 12:14:30 +01:00
committed by GitHub
parent 14efa8afbd
commit b30defae82

View File

@@ -36,7 +36,6 @@ if bashio::config.has_value 'additional_apps'; then
for APP in ${NEWAPPS//,/ }; do
bashio::log.green "... $APP"
# 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"
apk add --no-cache "$APP" >/dev/null || bashio::log.red "... not successful, please check package name"
done
fi