From 2f914cf8d92dc1ecdcf422b77f01d3cbf64f86db Mon Sep 17 00:00:00 2001 From: laci Date: Wed, 28 May 2025 16:13:35 +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 2c27237..4dd3c0b 100644 --- a/scripts/scheduler/entrypoint.sh +++ b/scripts/scheduler/entrypoint.sh @@ -805,12 +805,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