From 653d96532019ee9d88d8a13836553ed5cdc51722 Mon Sep 17 00:00:00 2001 From: Yasin Demir Date: Wed, 16 Sep 2026 05:27:13 +0300 Subject: [PATCH] Point installer and docs at git.yasindemir.link Replace the bare-IP Gitea host (146.19.208.111) with the domain in install.sh REPO_URL and in the README install instructions. Co-Authored-By: Claude Opus 5 (1M context) --- README.md | 4 ++-- install.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c68d823..31d7758 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,13 @@ menü uzaktan indirmeye düşmez, hata verip durur. ### Yöntem 1 — Tek satır (önerilen) ```bash -bash <(curl -sL http://146.19.208.111:3001/yasin/SSH-Manager/raw/branch/main/install.sh) +bash <(curl -sL http://git.yasindemir.link:3001/yasin/SSH-Manager/raw/branch/main/install.sh) ``` ### Yöntem 2 — Manuel klon ```bash -git clone http://146.19.208.111:3001/yasin/SSH-Manager.git +git clone http://git.yasindemir.link:3001/yasin/SSH-Manager.git cd SSH-Manager sudo bash install.sh ``` diff --git a/install.sh b/install.sh index e0ea998..7d5d3b0 100644 --- a/install.sh +++ b/install.sh @@ -10,12 +10,12 @@ fi echo "Installing TNS243-GLOBAL Manager (localized bundle)..." # Repo URI used when this script is executed piped (curl | bash) instead of from a local clone -REPO_URL="http://146.19.208.111:3001/yasin/SSH-Manager.git" +REPO_URL="http://git.yasindemir.link:3001/yasin/SSH-Manager.git" # Resolve the directory this script lives in (the cloned repo root). # Supports both: # git clone $REPO_URL && cd SSH-Manager && bash install.sh -# bash <(curl -sL http://146.19.208.111:3001/yasin/SSH-Manager/raw/branch/main/install.sh) +# bash <(curl -sL http://git.yasindemir.link:3001/yasin/SSH-Manager/raw/branch/main/install.sh) SCRIPT_DIR="" PIPED_CLONE_DIR="" if [[ -n "${BASH_SOURCE[0]}" && -f "${BASH_SOURCE[0]}" ]]; then