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
This commit is contained in:
parent
612f6674cc
commit
11b4f93bf1
|
|
@ -98,7 +98,7 @@ cmd_install() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Installer-Skript herunterladen und ausführen
|
# 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"
|
local temp_installer="/tmp/gameadm-installer-$$.sh"
|
||||||
|
|
||||||
log "INFO" "Lade Installer herunter..."
|
log "INFO" "Lade Installer herunter..."
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ NC='\033[0m' # No Color
|
||||||
GAMEADM_DIR="/etc/gameadm"
|
GAMEADM_DIR="/etc/gameadm"
|
||||||
MODULES_DIR="$GAMEADM_DIR/modules"
|
MODULES_DIR="$GAMEADM_DIR/modules"
|
||||||
BIN_DIR="/usr/local/bin"
|
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)"
|
BACKUP_DIR="/tmp/gameadm-backup-$(date +%Y%m%d-%H%M%S)"
|
||||||
|
|
||||||
# Logging-Funktion
|
# Logging-Funktion
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue