Skip to content

Commit

Permalink
Fix install script - get_machine (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
mahirpiy authored Jul 12, 2024
1 parent ea17e6d commit df124e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ get_os() {
get_machine() {
case "$(uname -m)" in
"x86_64"|"amd64"|"x64")
echo "x86_64" ;;
echo "amd64" ;;
"i386"|"i86pc"|"x86"|"i686")
echo "i386" ;;
"arm64"|"armv6l"|"aarch64")
Expand Down

0 comments on commit df124e0

Please sign in to comment.