mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #1833 from anton-petrov/master
Added aarch64 for Linux in anaconda_architecture()
This commit is contained in:
commit
b2f7629c56
1 changed files with 1 additions and 0 deletions
|
@ -1006,6 +1006,7 @@ anaconda_architecture() {
|
|||
"Linux" )
|
||||
case "$(uname -m)" in
|
||||
"armv7l" ) echo "Linux-armv7l" ;;
|
||||
"aarch64" ) echo "Linux-aarch64" ;;
|
||||
"i386" | "i486" | "i586" | "i686" | "i786" ) echo "Linux-x86" ;;
|
||||
"ppc64le" ) echo "Linux-ppc64le" ;;
|
||||
"x86_64" ) echo "Linux-x86_64" ;;
|
||||
|
|
Loading…
Reference in a new issue