From 2fca8300a12e5f316dd78bc22c2b04305e4e2812 Mon Sep 17 00:00:00 2001 From: S Date: Sun, 1 Mar 2026 10:05:45 -0500 Subject: [PATCH] refactor: use REPO_NAMES in phase5_post_check.sh Co-Authored-By: Claude Opus 4.6 --- phase5_post_check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phase5_post_check.sh b/phase5_post_check.sh index 6821e42..3a6042a 100755 --- a/phase5_post_check.sh +++ b/phase5_post_check.sh @@ -15,11 +15,11 @@ source "${SCRIPT_DIR}/lib/common.sh" load_env require_vars GITEA_ADMIN_TOKEN GITEA_INTERNAL_URL GITEA_ORG_NAME \ - REPO_1_NAME REPO_2_NAME REPO_3_NAME + REPO_NAMES log_info "=== Phase 5 Post-Check ===" -REPOS=("$REPO_1_NAME" "$REPO_2_NAME" "$REPO_3_NAME") +read -ra REPOS <<< "$REPO_NAMES" PASS=0 FAIL=0 SKIP=0