From 5b995ba08021b4afcfffa91ac49af77dea2e134b Mon Sep 17 00:00:00 2001 From: k-nasa Date: Sat, 11 Sep 2021 23:11:33 +0900 Subject: [PATCH 1/4] feat: Make exec binary for M1 mac available for download --- download-latest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download-latest.sh b/download-latest.sh index a6678a9dc..5565fb3f7 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -140,7 +140,7 @@ get_os() { get_archi() { architecture=$(uname -m) case "$architecture" in - 'x86_64' | 'amd64') + 'x86_64' | 'amd64' | 'arm64') archi='amd64' ;; 'aarch64') @@ -188,7 +188,7 @@ case "$os" in BINARY_NAME='meilisearch.exe' ;; - *) + *) release_file="meilisearch-$os-$archi" BINARY_NAME='meilisearch' From dda4fe10b30a4de0ae7fb6c3b7684af401324c36 Mon Sep 17 00:00:00 2001 From: nasa Date: Sun, 19 Sep 2021 23:46:31 +0900 Subject: [PATCH 2/4] Update download-latest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clémentine Urquizar --- download-latest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download-latest.sh b/download-latest.sh index 5565fb3f7..0707c7756 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -143,7 +143,7 @@ get_archi() { 'x86_64' | 'amd64' | 'arm64') archi='amd64' ;; - 'aarch64') + 'aarch64' | 'arm64') archi='armv8' ;; *) From cd2f886234d6e7815295b432745b1c31bbe43139 Mon Sep 17 00:00:00 2001 From: nasa Date: Sun, 19 Sep 2021 23:46:36 +0900 Subject: [PATCH 3/4] Update download-latest.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Clémentine Urquizar --- download-latest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/download-latest.sh b/download-latest.sh index 0707c7756..99c6cba05 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -140,7 +140,7 @@ get_os() { get_archi() { architecture=$(uname -m) case "$architecture" in - 'x86_64' | 'amd64' | 'arm64') + 'x86_64' | 'amd64') archi='amd64' ;; 'aarch64' | 'arm64') From 7f734f0a186ce6f67e8716c99fd191003b9c6153 Mon Sep 17 00:00:00 2001 From: k-nasa Date: Mon, 20 Sep 2021 20:57:47 +0900 Subject: [PATCH 4/4] get x84 binary --- download-latest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/download-latest.sh b/download-latest.sh index 99c6cba05..5565fb3f7 100644 --- a/download-latest.sh +++ b/download-latest.sh @@ -140,10 +140,10 @@ get_os() { get_archi() { architecture=$(uname -m) case "$architecture" in - 'x86_64' | 'amd64') + 'x86_64' | 'amd64' | 'arm64') archi='amd64' ;; - 'aarch64' | 'arm64') + 'aarch64') archi='armv8' ;; *)