From b85db50292fdc5c8e0bd0048667bdb66238b5eab Mon Sep 17 00:00:00 2001 From: RadKesvat Date: Fri, 22 Dec 2023 13:54:46 +0330 Subject: [PATCH] 7.0 --- scripts/install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index e25d226..c0dc68c 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -52,19 +52,19 @@ printf "\n" case $(uname -m) in - x86_64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V6.9/v6.9_linux_amd64.zip" ;; - arm) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V6.9/v6.9_linux_arm64.zip" ;; - aarch64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V6.9/v6.9_linux_arm64.zip" ;; + x86_64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V7.0/v7.0_linux_amd64.zip" ;; + arm) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V7.0/v7.0_linux_arm64.zip" ;; + aarch64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V7.0/v7.0_linux_arm64.zip" ;; *) echo "Unable to determine system architecture."; exit 1 ;; esac -wget $URL -O v6.9_linux_amd64.zip -unzip -o v6.9_linux_amd64.zip +wget $URL -O v7.0_linux_amd64.zip +unzip -o v7.0_linux_amd64.zip chmod +x RTT -rm v6.9_linux_amd64.zip +rm v7.0_linux_amd64.zip echo "finished."