diff --git a/README.md b/README.md index 3162476..60fcd7d 100644 --- a/README.md +++ b/README.md @@ -8,13 +8,13 @@ ### Eine-Zeile Installation (empfohlen) ```bash -curl -fsSL https://raw.githubusercontent.com/pp1l/gameadm-repo/main/install.sh | sudo bash +curl -fsSL http://localhost:3000/pp1l/gameadm/raw/branch/main/install.sh | sudo bash ``` ### Oder mit gameadm selbst ```bash # Lade gameadm herunter -curl -fsSL https://raw.githubusercontent.com/pp1l/gameadm-repo/main/bin/gameadm -o gameadm +curl -fsSL http://localhost:3000/pp1l/gameadm/raw/branch/main/bin/gameadm -o gameadm chmod +x gameadm # Installiere mit integrierter Funktion @@ -23,8 +23,8 @@ sudo ./gameadm install ### Manuelle Installation ```bash -git clone https://github.com/pp1l/gameadm-repo.git -cd gameadm-repo +git clone http://localhost:3000/pp1l/gameadm.git +cd gameadm sudo ./install.sh ``` diff --git a/bin/gameadm b/bin/gameadm index d5b714b..c40f4a2 100755 --- a/bin/gameadm +++ b/bin/gameadm @@ -98,7 +98,7 @@ cmd_install() { fi # Installer-Skript herunterladen und ausführen - local installer_url="http://localhost:3000/PurePowerPh1l/gameadm-repo/raw/branch/main/install.sh" + local installer_url="http://localhost:3000/pp1l/gameadm/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 33d8c3d..cebd041 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="http://localhost:3000/PurePowerPh1l/gameadm-repo/raw/branch/main" +INSTALL_URL_BASE="http://localhost:3000/pp1l/gameadm/raw/branch/main" BACKUP_DIR="/tmp/gameadm-backup-$(date +%Y%m%d-%H%M%S)" # Logging-Funktion