From c1800d1e6950e4b8b5270d38d1e6b1c489332cda Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 15:12:30 +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 9a4da71e4..53788d0b8 100644 --- a/webtop/rootfs/etc/cont-init.d/99-run.sh +++ b/webtop/rootfs/etc/cont-init.d/99-run.sh @@ -16,7 +16,7 @@ if bashio::config.has_value 'additional_apps'; then # Install apps for APP in $(echo "$(bashio::config 'additional_apps')" | tr "," " "); do bashio::log.green "... $APP" - apt-get install -yqq $APP &>/dev/null \ + apt-get install -yqq $APP &>/dev/null || snap install $APP \ && bashio::log.green "... done" \ || bashio::log.red "... not successful" done