From 0eb2d6331dcf2660936069ed96d29184df1197e9 Mon Sep 17 00:00:00 2001 From: David Flanagan Date: Wed, 4 Jan 2023 23:11:11 +0000 Subject: [PATCH] fix: support macOS M chips --- public/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/index.html b/public/index.html index 8c65e26..a627bea 100755 --- a/public/index.html +++ b/public/index.html @@ -73,6 +73,10 @@ arch=$(uname -m) echo $arch case $arch in + "arm64") + suffix="-aarch64-apple-darwin" + ;; + *) # We rely on Rosetta atm suffix="-x86_64-apple-darwin"