Skip to content

Commit

Permalink
fix: unsupported architecture on arm64 (#747)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK authored Jul 27, 2024
1 parent c63e76e commit 4886d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ esac

case "$ARCH" in
x86_64) ARCH='x64' ;;
arm64) ARCH='arm64' ;;
arm64|aarch64) ARCH='arm64' ;;
armv7l) ARCH='arm' ;;
*) log_message "Unsupported architecture"; exit 1 ;;
esac
Expand Down

0 comments on commit 4886d17

Please sign in to comment.