Skip to content

Commit

Permalink
Update install.sh for armv6 (#562)
Browse files Browse the repository at this point in the history
* Update install.sh

* Update install.sh

Co-authored-by: Vasily Korzh <[email protected]>
  • Loading branch information
arriven and Vasily Korzh authored Aug 8, 2022
1 parent b4591e6 commit 636d61b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ fi
INSTALL_ARCH="unknown"
case "$OSARCH" in
x86_64*) INSTALL_ARCH="amd64" ;;
i386*) INSTALL_ARCH="386" ;;
armv6l) INSTALL_ARCH="arm" ;;
armv7l) INSTALL_ARCH="arm" ;;
i386*) INSTALL_ARCH="386" ;;
i686*) INSTALL_ARCH="386" ;;
armv6l) INSTALL_ARCH="armv6" ;;
armv7l) INSTALL_ARCH="armv6" ;;
arm*) INSTALL_ARCH="arm64" ;;
aarch64*) INSTALL_ARCH="arm64" ;;
*) echo "unknown: $OSARCH"; exit 1 ;;
Expand Down

0 comments on commit 636d61b

Please sign in to comment.