From 0acd18b68277f606973626fb7ac73240189c77f3 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 26 Apr 2022 19:58:59 +0200 Subject: [PATCH] Update 99-run.sh --- addons_updater/rootfs/etc/cont-init.d/99-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons_updater/rootfs/etc/cont-init.d/99-run.sh b/addons_updater/rootfs/etc/cont-init.d/99-run.sh index 52f9f7b5f..d2fe80e08 100644 --- a/addons_updater/rootfs/etc/cont-init.d/99-run.sh +++ b/addons_updater/rootfs/etc/cont-init.d/99-run.sh @@ -31,7 +31,7 @@ fi LOGINFO="... parse addons" && if [ "$VERBOSE" = true ]; then bashio::log.info "$LOGINFO"; fi # Go through all folders, add to filters if not existing -for f in $(dirname $(find -- /data/*/updater.json -maxdepth 0 -type d | sort -r )); do +for f in $(dirname "$(find -- /data/*/updater.json -maxdepth 0 -type d | sort -r )"); do SLUG=$f REPOSITORY=$(jq -r .repository /data/"$f"/updater.json) UPSTREAM=$(jq -r .upstream /data/"$f"/updater.json)