refactor: use REPO_NAMES in phase8_post_check.sh

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
S
2026-03-01 10:05:45 -05:00
parent 71025f21fb
commit d25a2075d4

View File

@@ -18,11 +18,11 @@ source "${SCRIPT_DIR}/lib/common.sh"
load_env load_env
require_vars GITEA_DOMAIN GITEA_ADMIN_TOKEN GITEA_ORG_NAME \ require_vars GITEA_DOMAIN GITEA_ADMIN_TOKEN GITEA_ORG_NAME \
GITHUB_USERNAME GITHUB_TOKEN \ GITHUB_USERNAME GITHUB_TOKEN \
REPO_1_NAME REPO_2_NAME REPO_3_NAME REPO_NAMES
log_info "=== Phase 8 Post-Check ===" log_info "=== Phase 8 Post-Check ==="
REPOS=("$REPO_1_NAME" "$REPO_2_NAME" "$REPO_3_NAME") read -ra REPOS <<< "$REPO_NAMES"
PASS=0 PASS=0
FAIL=0 FAIL=0