Skip to content

Commit

Permalink
5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RadKesvat committed Oct 3, 2023
1 parent 2d69351 commit 9a970d1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,19 @@ printf "\n"


case $(uname -m) in
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" ;;
x86_64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.3/v5.3_linux_amd64.zip" ;;
arm) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.3/v5.3_linux_arm64.zip" ;;
aarch64) URL="https://github.com/radkesvat/ReverseTlsTunnel/releases/download/V5.3/v5.3_linux_arm64.zip" ;;

*) echo "Unable to determine system architecture."; exit 1 ;;

esac


wget $URL -O v5.2_linux_amd64.zip
unzip -o v5.2_linux_amd64.zip
wget $URL -O v5.3_linux_amd64.zip
unzip -o v5.3_linux_amd64.zip
chmod +x RTT
rm v5.2_linux_amd64.zip
rm v5.3_linux_amd64.zip

echo "finished."

Expand Down

0 comments on commit 9a970d1

Please sign in to comment.