fix: update setup.sh to use GitHub instead of Gitea
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled

- 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
This commit is contained in:
aitbc
2026-05-26 10:01:01 +02:00
parent 5a0217a57b
commit d9b8d595d7

View File

@@ -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"