Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wknapik committed Jan 18, 2025
1 parent aebda9e commit 0374c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ main() {
*) glibc_supported;;
esac

case "${arch:=$(uname -m)}" in
case "$(uname -m)" in
aarch64|arm64|x86_64) ;;
*) error "Unsupported architecture $arch. Only 64-bit x86 or ARM machines are supported.";;
*) error "Unsupported architecture $(uname -m). Only 64-bit x86 or ARM machines are supported.";;
esac

## Locate the necessary tools
Expand Down

0 comments on commit 0374c38

Please sign in to comment.