From 971580630d30af63d206ae95edd0ab400beaba98 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 phase6_github_mirrors.sh Co-Authored-By: Claude Opus 4.6 --- phase6_github_mirrors.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phase6_github_mirrors.sh b/phase6_github_mirrors.sh index 4430d52..c2f9820 100755 --- a/phase6_github_mirrors.sh +++ b/phase6_github_mirrors.sh @@ -19,11 +19,11 @@ source "${SCRIPT_DIR}/lib/common.sh" load_env require_vars GITEA_ADMIN_TOKEN GITEA_INTERNAL_URL GITEA_ORG_NAME \ GITHUB_USERNAME GITHUB_TOKEN GITHUB_MIRROR_INTERVAL \ - REPO_1_NAME REPO_2_NAME REPO_3_NAME + REPO_NAMES phase_header 6 "GitHub Push Mirrors" -REPOS=("$REPO_1_NAME" "$REPO_2_NAME" "$REPO_3_NAME") +read -ra REPOS <<< "$REPO_NAMES" SUCCESS=0 FAILED=0