Fixed typo

Added aarch64 for Linux in anaconda_architecture()
This commit is contained in:
Anton Petrov 2021-02-28 19:03:12 +03:00 committed by GitHub
parent 2fd00096de
commit a2634350f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1006,7 +1006,7 @@ anaconda_architecture() {
"Linux" )
case "$(uname -m)" in
"armv7l" ) echo "Linux-armv7l" ;;
"aarch64 " ) echo "Linux-aarch64" ;;
"aarch64" ) echo "Linux-aarch64" ;;
"i386" | "i486" | "i586" | "i686" | "i786" ) echo "Linux-x86" ;;
"ppc64le" ) echo "Linux-ppc64le" ;;
"x86_64" ) echo "Linux-x86_64" ;;