Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
spiritLHLS authored May 21, 2024
1 parent e5c8879 commit 988e689
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gostun_install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#From https://github.com/oneclickvirt/gostun
#2024.05.05
#2024.05.21

rm -rf gostun
os=$(uname -s)
Expand All @@ -15,7 +15,7 @@ case $os in
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-linux-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64")
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-linux-arm64
;;
*)
Expand Down Expand Up @@ -49,7 +49,7 @@ case $os in
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-freebsd-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64")
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-freebsd-arm64
;;
*)
Expand All @@ -66,7 +66,7 @@ case $os in
"i386" | "i686")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-openbsd-386
;;
"armv7l" | "armv8" | "armv8l" | "aarch64")
"armv7l" | "armv8" | "armv8l" | "aarch64" | "arm64")
wget -O gostun https://github.com/oneclickvirt/gostun/releases/download/output/gostun-openbsd-arm64
;;
*)
Expand All @@ -82,4 +82,4 @@ case $os in
esac

chmod 777 gostun
./gostun
./gostun

0 comments on commit 988e689

Please sign in to comment.