From 85318cc5082cc827451ef3b0df749fbbf6ca33a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20B=C3=BChler?= <48823479+adibue@users.noreply.github.com> Date: Mon, 19 Jul 2021 10:30:16 +0200 Subject: [PATCH] Got 'hyper' ready for Apple Silicon `hyper` now supports Apple Silicon --- Installomator.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 1686f4a..8766d4d 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1772,6 +1772,11 @@ hpeasystart) hyper) name="Hyper" type="dmg" + if [[ $(arch) == i386 ]]; then + archiveName="mac-x64.dmg" + elif [[ $(arch) == arm64 ]]; then + archiveName="mac-arm64.dmg" + fi downloadURL=$(downloadURLFromGit vercel hyper ) appNewVersion=$(versionFromGit vercel hyper) expectedTeamID="JW6Y669B67"