From 9e7dd952bcdefe1ebfc6c0f17ccb2782dc0a4a87 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 21:53:48 +0100 Subject: [PATCH] Update 99-run.sh --- webtop/rootfs/etc/cont-init.d/99-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtop/rootfs/etc/cont-init.d/99-run.sh b/webtop/rootfs/etc/cont-init.d/99-run.sh index dcf58ab84..1adf790e9 100644 --- a/webtop/rootfs/etc/cont-init.d/99-run.sh +++ b/webtop/rootfs/etc/cont-init.d/99-run.sh @@ -20,7 +20,7 @@ if bashio::config.has_value 'additional_apps'; then for APP in $(echo "$(bashio::config 'additional_apps')" | tr "," " "); do bashio::log.green "... $APP" # Test install with both apt-get and snap - apt-get install -yqq $APP &>/dev/null || snap install $APP &>/dev/null \ + apt-get install -yqq $APP &>/dev/null \ && bashio::log.green "... done" \ || bashio::log.red "... not successful, please check package name" done