Skip to content

Commit

Permalink
download.sh: Fix binary selection for arm8 and arm64 architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
nocnokneo authored Aug 29, 2024
1 parent 3e50a67 commit 271e24d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function main {
Linux\ armv5*) download linux_arm5 ;;
Linux\ armv6*) download linux_arm6 ;;
Linux\ armv7*) download linux_arm7 ;;
Linux\ armv8*) download linux_arm8 ;;
Linux\ aarch64*) download linux_arm8 ;;
Linux\ armv8*) download linux_arm64 ;;
Linux\ aarch64*) download linux_arm64 ;;
Linux\ *64) download linux_amd64 ;;
Linux\ *86) download linux_386 ;;
*)
Expand Down

0 comments on commit 271e24d

Please sign in to comment.