From 697bd794d152db2d574f4da9b64637987532979e Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 15:32:56 +0100 Subject: [PATCH] Update 99-run.sh --- webtop/rootfs/etc/cont-init.d/99-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtop/rootfs/etc/cont-init.d/99-run.sh b/webtop/rootfs/etc/cont-init.d/99-run.sh index 13d05cbc8..d3a46108d 100644 --- a/webtop/rootfs/etc/cont-init.d/99-run.sh +++ b/webtop/rootfs/etc/cont-init.d/99-run.sh @@ -20,8 +20,8 @@ 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 \ + apt-get install -yqq $APP &>/dev/null || snap install $APP &>/dev/null \ && bashio::log.green "... done" \ - || bashio::log.red "... not successful" + || bashio::log.red "... not successful, please check package name" done fi