From 0509b025af3e44a7dfca99c5545294c152b8a8c7 Mon Sep 17 00:00:00 2001 From: Alexandre Del Date: Thu, 3 Oct 2024 14:53:29 +0200 Subject: [PATCH] fix(installer): add arm64 for both linux and darwin. --- installer | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installer b/installer index b197afd..80c913f 100644 --- a/installer +++ b/installer @@ -70,8 +70,7 @@ execute() { } get_binaries() { case "$PLATFORM" in - darwin/amd64) BINARIES="autotag" ;; - linux/amd64) BINARIES="autotag" ;; + darwin/amd64 | linux/amd64 | darwin/arm64 | linux/arm64) BINARIES="autotag" ;; *) log_crit "platform $PLATFORM is not supported. Make sure this script is up-to-date and file request at https://github.com/${PREFIX}/issues/new" exit 1