add armv7/aarch64 support to installer

This commit is contained in:
Adam Stephens 2021-04-30 14:33:50 -04:00
parent 027ae1df47
commit 07f1784089
No known key found for this signature in database
GPG Key ID: C4D9181BBFB34C0C
1 changed files with 3 additions and 0 deletions

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"