From d9b8d595d7b6b220ae66f25cdef7fa63d0b2aead Mon Sep 17 00:00:00 2001 From: aitbc Date: Tue, 26 May 2026 10:01:01 +0200 Subject: [PATCH] fix: update setup.sh to use GitHub instead of Gitea - Updated git clone URL from Gitea to GitHub - Updated deploy_common.sh download URL to GitHub - Ensures public repository access for new installations - Aligns with documentation that references GitHub as primary repo --- scripts/setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/setup.sh b/scripts/setup.sh index d4a10f70..f1a3164f 100755 --- a/scripts/setup.sh +++ b/scripts/setup.sh @@ -11,7 +11,7 @@ DEPLOY_COMMON_TEMP="" if [ ! -f "$DEPLOY_COMMON_PATH" ]; then DEPLOY_COMMON_TEMP="$(mktemp)" - if ! curl -fsSL "https://gitea.bubuit.net/oib/aitbc/raw/branch/main/scripts/utils/deploy_common.sh" -o "$DEPLOY_COMMON_TEMP"; then + if ! curl -fsSL "https://raw.githubusercontent.com/oib/AITBC/main/scripts/utils/deploy_common.sh" -o "$DEPLOY_COMMON_TEMP"; then rm -f "$DEPLOY_COMMON_TEMP" echo "[ERROR] Failed to load shared deployment helper" exit 1 @@ -104,7 +104,7 @@ clone_repo() { # Clone repository cd /opt - git clone http://gitea.bubuit.net:3000/oib/aitbc.git aitbc || error "Failed to clone repository" + git clone https://github.com/oib/AITBC.git aitbc || error "Failed to clone repository" cd /opt/aitbc success "Repository cloned successfully"