From affefd63b06bec84e9a6bd77897467f8243fa6e0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 16:39:04 +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 2cb1fb8a7..dcf58ab84 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 || snap install $APP &>/dev/null \ && bashio::log.green "... done" \ || bashio::log.red "... not successful, please check package name" done