From b30defae82a9386c999a01e600b820a91d182cae Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 7 Feb 2022 12:14:30 +0100 Subject: [PATCH] Update 80-configuration.sh --- webtop_kde/rootfs/etc/cont-init.d/80-configuration.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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