add armv7/aarch64 support to installer (#198)

This commit is contained in:
Adam Stephens 2021-04-30 12:32:20 -07:00 committed by GitHub
parent 027ae1df47
commit 90f49684e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,6 +33,9 @@ install() {
_cputype="x86_64"
_clibtype="musl"
;;
armv7 | aarch64)
_clibtype="musl"
;;
*)
warning "No binaries are available for your CPU architecture ($_cputype)"
_clibtype="gnu"