Avoid messages

This commit is contained in:
Alexandre
2023-03-05 14:11:47 +01:00
committed by GitHub
parent bf8564d580
commit 03fa9488d5

View File

@@ -27,7 +27,7 @@ if bashio::config.has_value 'additional_apps'; then
APP="${element#${BASH_REMATCH[1]}}"
bashio::log.green "... $APP"
# shellcheck disable=SC2015,SC2086
apk add --no-cache $APP || bashio::log.red "... not successful, please check $APP package name"
apk add --no-cache $APP >/dev/null || bashio::log.red "... not successful, please check $APP package name"
fi
done
fi