diff --git a/webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh b/webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh index afb0d3782..cbda65c3c 100644 --- a/webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh +++ b/webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh @@ -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