Skip to content

Commit

Permalink
get script update
Browse files Browse the repository at this point in the history
  • Loading branch information
MXWXZ committed Sep 27, 2024
1 parent dbc57b0 commit cb79c4f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions get_offical_plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ esac
ARCH=$(uname -m)
case $ARCH in
'x86_64')
ARCH='x64'
ARCH='x86_x64'
;;
'i386')
ARCH='i686'
Expand Down Expand Up @@ -78,19 +78,19 @@ fi
default=1

if [ $OS == 'linux' ]; then
if [ $ARCH == 'x64' ]; then
if [ $ARCH == 'x86_x64' ]; then
default=1
elif [ $ARCH == 'i686' ]; then
default=2
elif [ $ARCH == 'aarch64' ]; then
default=3
fi
elif [ $OS == 'windows' ]; then
if [ $ARCH == 'x64' ]; then
if [ $ARCH == 'x86_x64' ]; then
default=4
fi
elif [ $OS == 'darwin' ]; then
if [ $ARCH == 'x64' ]; then
if [ $ARCH == 'x86_x64' ]; then
default=5
elif [ $ARCH == 'aarch64' ]; then
default=6
Expand All @@ -100,11 +100,11 @@ fi
extension=.tar.gz
echo
echo "Choose version:"
echo "1) linux-x64"
echo "1) linux-x86_x64"
echo "2) linux-i686"
echo "3) linux-aarch64"
echo "4) windows-x64"
echo "5) darwin-x64"
echo "4) windows-x86_x64"
echo "5) darwin-x86_x64"
echo "6) darwin-aarch64"
read -p "Your choice (default: $default): " choice
if [ -z "$choice" ]; then
Expand Down

0 comments on commit cb79c4f

Please sign in to comment.