From 5648f672e0943e6f4c65c598e3036c55a703558a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Rossi?= Date: Thu, 4 Jun 2026 15:11:44 +0200 Subject: [PATCH] fix bash operator to dash --- .gitea/workflows/maven-release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/maven-release.yml b/.gitea/workflows/maven-release.yml index 4a07db8..a7b689e 100644 --- a/.gitea/workflows/maven-release.yml +++ b/.gitea/workflows/maven-release.yml @@ -220,8 +220,7 @@ jobs: fi # ── Cicla su ogni repo compose ── - IFS=',' read -ra REPO_LIST <<< "${{ inputs.compose-repos }}" - for COMPOSE_REPO in "${REPO_LIST[@]}"; do + echo "${{ inputs.compose-repos }}" | tr ',' '\n' | while IFS= read -r COMPOSE_REPO; do COMPOSE_REPO=$(echo "$COMPOSE_REPO" | xargs) [ -z "$COMPOSE_REPO" ] && continue REPO_DIR="/tmp/compose-$(echo "$COMPOSE_REPO" | tr '/' '-')"