From 11b4f93bf1b047634cc0715c10364f3c204a0bc2 Mon Sep 17 00:00:00 2001 From: Automation Admin Date: Thu, 14 Aug 2025 21:49:53 +0000 Subject: [PATCH] Fix: Update URLs for local Gitea instance - Change GitHub URLs to local Gitea instance URLs - Update installer download paths to use localhost:3000 - Fix gameadm install command to work with local repository --- bin/gameadm | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/gameadm b/bin/gameadm index 92b7d8a..d5b714b 100755 --- a/bin/gameadm +++ b/bin/gameadm @@ -98,7 +98,7 @@ cmd_install() { fi # Installer-Skript herunterladen und ausführen - local installer_url="https://raw.githubusercontent.com/pp1l/gameadm-repo/main/install.sh" + local installer_url="http://localhost:3000/PurePowerPh1l/gameadm-repo/raw/branch/main/install.sh" local temp_installer="/tmp/gameadm-installer-$$.sh" log "INFO" "Lade Installer herunter..." diff --git a/install.sh b/install.sh index 8fbe497..33d8c3d 100755 --- a/install.sh +++ b/install.sh @@ -15,7 +15,7 @@ NC='\033[0m' # No Color GAMEADM_DIR="/etc/gameadm" MODULES_DIR="$GAMEADM_DIR/modules" BIN_DIR="/usr/local/bin" -INSTALL_URL_BASE="https://raw.githubusercontent.com/pp1l/gameadm-repo/main" +INSTALL_URL_BASE="http://localhost:3000/PurePowerPh1l/gameadm-repo/raw/branch/main" BACKUP_DIR="/tmp/gameadm-backup-$(date +%Y%m%d-%H%M%S)" # Logging-Funktion