Update 93-apps_install.sh

This commit is contained in:
Alexandre
2022-01-08 18:46:35 +01:00
committed by GitHub
parent 57bfc415e3
commit d4cb74b25a

View File

@@ -6,7 +6,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 \
apt-get install -yqq $APP &>/dev/null \
&& bashio::log.green "... done" \
|| bashio::log.red "... not successful"
done