From 098924932a37772e22ad3098b5ad09e0e3155d6d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 15 Nov 2021 20:56:24 +0100 Subject: [PATCH] Update run.sh --- addons_updater/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons_updater/run.sh b/addons_updater/run.sh index b367be4bb..945431d5e 100644 --- a/addons_updater/run.sh +++ b/addons_updater/run.sh @@ -91,11 +91,11 @@ for addons in $(bashio::config "addon|keys"); do #Define the folder addon LOGINFO="... $SLUG : checking slug exists in repo" && if [ $VERBOSE = true ]; then bashio::log.info $LOGINFO; fi - cd /data/${BASENAME}/${SLUG} || ( bashio::log.error "$SLUG addon not found in this repository. Exiting. Exiting." && continue ) + cd /data/${BASENAME}/${SLUG} || bashio::log.error "$SLUG addon not found in this repository. Exiting. Exiting." #Find current version LOGINFO="... $SLUG : get current version" && if [ $VERBOSE = true ]; then bashio::log.info $LOGINFO; fi - CURRENT=$(jq .upstream config.json) || ( bashio::log.error "$SLUG addon upstream tag not found in config.json. Exiting." && continue ) + CURRENT=$(jq .upstream config.json) || bashio::log.error "$SLUG addon upstream tag not found in config.json. Exiting." if [ $SOURCE = "dockerhub" ]; then # Use dockerhub as upstream