mirror of
https://github.com/denisidoro/navi
synced 2024-11-13 23:37:10 +00:00
Fix install script for Linux aarch64
This commit is contained in:
parent
b2f6ba54ca
commit
c48213b948
1 changed files with 2 additions and 2 deletions
|
@ -217,8 +217,8 @@ get_target() {
|
|||
local target
|
||||
case "$archi" in
|
||||
Darwin*) target="x86_64-osx" ;;
|
||||
Linux\ *x86*) $is_android && target="aarch64-linux-android" || target="x86_64-unknown-linux-musl" ;;
|
||||
*arm*) $is_android && target="armv7-linux-androideabi" || target="armv7-unknown-linux-musleabihf" ;;
|
||||
*x86*) $is_android && target="aarch64-linux-android" || target="x86_64-unknown-linux-musl" ;;
|
||||
*arm*|*aarch*) $is_android && target="armv7-linux-androideabi" || target="armv7-unknown-linux-musleabihf" ;;
|
||||
*) target="" ;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue