From ba6d88709849427c123c03814db8a938371a897c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20B=C3=BChler?= <48823479+midni9ht@users.noreply.github.com> Date: Fri, 7 May 2021 12:10:14 +0200 Subject: [PATCH] Updated 'webexteams' for Apple Silicon support 'Webex Teams' changed its application name to just 'Webex'. Also there is an Apple Silicon version available now. Should solve #156 --- Installomator.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Installomator.sh b/Installomator.sh index 545a928..fa4a104 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -2582,9 +2582,13 @@ webexmeetings) ;; webexteams) # credit: Erik Stam (@erikstam) - name="Webex Teams" + name="Webex" type="dmg" - downloadURL="https://binaries.webex.com/WebexTeamsDesktop-MACOS-Gold/WebexTeams.dmg" + if [[ $(arch) == arm64 ]]; then + downloadURL="https://binaries.webex.com/WebexDesktop-MACOS-Apple-Silicon-Gold/Webex.dmg" + elif [[ $(arch) == i386 ]]; then + downloadURL="https://binaries.webex.com/WebexTeamsDesktop-MACOS-Gold/Webex.dmg" + fi expectedTeamID="DE8Y96K9QP" ;; whatsapp)