Update 99-run.sh

This commit is contained in:
Alexandre
2022-02-04 15:51:18 +01:00
committed by GitHub
parent 5ab608a9c7
commit 41f4b95deb

View File

@@ -17,11 +17,12 @@ fi
if bashio::config.has_value 'additional_apps'; then
bashio::log.info "Installing additional apps :"
# hadolint ignore=SC2005
for APP in $(echo "$(bashio::config 'additional_apps')" | tr "," " "); do
NEWAPPS=$(bashio::config 'additional_apps')
for APP in ${NEWAPPS//,/ }; do
bashio::log.green "... $APP"
# Test install with both apt-get and snap
# hadolint ignore=SC2015
apt-get install -yqq "$APP" &>/dev/null || apk add --no-cache "$APP" &>/dev/null &&
(apt-get install -yqq "$APP" &>/dev/null || apk add --no-cache "$APP" &>/dev/null) &&
bashio::log.green "... done" ||
bashio::log.red "... not successful, please check package name"
done