mirror of
https://github.com/minio/minio
synced 2024-11-05 17:34:01 +00:00
Add s390x support (#6263)
This commit is contained in:
parent
5a1ae862a7
commit
71979376b5
1 changed files with 2 additions and 2 deletions
|
@ -89,11 +89,11 @@ check_minimum_version() {
|
|||
|
||||
assert_is_supported_arch() {
|
||||
case "${ARCH}" in
|
||||
x86_64 | amd64 | aarch64 | ppc64le | arm* )
|
||||
x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x )
|
||||
return
|
||||
;;
|
||||
*)
|
||||
echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*]"
|
||||
echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x]"
|
||||
exit 1
|
||||
esac
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue