mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-22 18:17:39 +08:00
Fix dowload-latest.sh according to the new name of the binary
This commit is contained in:
parent
c71c95feb0
commit
1da7277817
@ -148,11 +148,18 @@ get_os() {
|
|||||||
get_archi() {
|
get_archi() {
|
||||||
architecture=$(uname -m)
|
architecture=$(uname -m)
|
||||||
case "$architecture" in
|
case "$architecture" in
|
||||||
'x86_64' | 'amd64' | 'arm64')
|
'x86_64' | 'amd64' )
|
||||||
archi='amd64'
|
archi='amd64'
|
||||||
;;
|
;;
|
||||||
|
'arm64')
|
||||||
|
if [ $os -eq 'macos' ]; then # MacOS M1
|
||||||
|
archi='amd64'
|
||||||
|
else
|
||||||
|
archi='aarch64'
|
||||||
|
fi
|
||||||
|
;;
|
||||||
'aarch64')
|
'aarch64')
|
||||||
archi='armv8'
|
archi='aarch64'
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
return 1
|
return 1
|
||||||
|
Loading…
Reference in New Issue
Block a user