From 71025f21fb6664f5dd2e916ab0a00fed2208b8e1 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 phase8_cutover.sh Co-Authored-By: Claude Opus 4.6 --- phase8_cutover.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phase8_cutover.sh b/phase8_cutover.sh index 4287836..6f7d307 100755 --- a/phase8_cutover.sh +++ b/phase8_cutover.sh @@ -25,11 +25,11 @@ require_vars UNRAID_IP UNRAID_SSH_USER UNRAID_GITEA_PORT \ GITEA_INTERNAL_URL GITEA_DOMAIN GITEA_ADMIN_TOKEN \ GITEA_ORG_NAME NGINX_CONTAINER_NAME NGINX_CONF_PATH \ SSL_MODE GITHUB_USERNAME GITHUB_TOKEN \ - REPO_1_NAME REPO_2_NAME REPO_3_NAME + REPO_NAMES phase_header 8 "Cutover (HTTPS + Mark GitHub Mirrors)" -REPOS=("$REPO_1_NAME" "$REPO_2_NAME" "$REPO_3_NAME") +read -ra REPOS <<< "$REPO_NAMES" PHASE8_STATE_DIR="$(_project_root)/.manifests" PHASE8_STATE_FILE="${PHASE8_STATE_DIR}/phase8_github_repo_state.json"