From a575bcbf4698e6e8452a1392dee12b0920c56d90 Mon Sep 17 00:00:00 2001 From: laci Date: Thu, 29 May 2025 09:43:38 +0000 Subject: [PATCH] app icon --- scripts/scheduler/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/scheduler/entrypoint.sh b/scripts/scheduler/entrypoint.sh index 3ea0875..54b76d3 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -803,12 +803,13 @@ execute_task() { for APP in $APPS; do APP_NAME=$(echo "$APP" | jq -r '.name') APP_VERSION=$(echo "$APP" | jq -r '.version') + APP_ICON=$(echo "$APP" | jq -r '.icon') if [ "$DEPLOYMENTS" != "" ]; then SEP="," else SEP="" fi - DEPLOYMENTS=$DEPLOYMENTS$SEP'"'$APP_NAME'": "'$APP_VERSION'"' + DEPLOYMENTS=$DEPLOYMENTS$SEP'"'$APP_NAME'": {"version": "'$APP_VERSION'", "icon": "'$APP_ICON'"}' done done if [ "$DEPLOYMENTS" == "" ]; then