Update 99-run.sh

This commit is contained in:
Alexandre
2022-01-11 15:12:30 +01:00
committed by GitHub
parent dcfc05f28d
commit c1800d1e69

View File

@@ -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