From 91e79728639bb83433f8c1ff6623dc240e043414 Mon Sep 17 00:00:00 2001 From: RadKesvat Date: Mon, 2 Oct 2023 07:57:24 +0330 Subject: [PATCH] version 5.2 --- install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install.sh b/install.sh index dba6d48..87d5cf1 100644 --- a/install.sh +++ b/install.sh @@ -52,19 +52,19 @@ printf "\n" case $(uname -m) in - x86_64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.1/v5.1_linux_amd64.zip" ;; - arm) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.1/v5.1_linux_arm64.zip" ;; - aarch64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.1/v5.1_linux_arm64.zip" ;; + x86_64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.2/v5.2_linux_amd64.zip" ;; + arm) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.2/v5.2_linux_arm64.zip" ;; + aarch64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.2/v5.2_linux_arm64.zip" ;; *) echo "Unable to determine system architecture."; exit 1 ;; esac -wget $URL -O v5.1_linux_amd64.zip -unzip -o v5.1_linux_amd64.zip +wget $URL -O v5.2_linux_amd64.zip +unzip -o v5.2_linux_amd64.zip chmod +x RTT -rm v5.1_linux_amd64.zip +rm v5.2_linux_amd64.zip echo "finished."