From b160291753d51b983736bdd06aedd03c22a7c7db Mon Sep 17 00:00:00 2001 From: Greg Knackstedt <52809959+gknackstedt@users.noreply.github.com> Date: Tue, 5 Apr 2022 18:34:28 -0400 Subject: [PATCH] Added install logic for BlueJeans Events BlueJeans Events by Verizon only has one install package available currently, does not have architecture specific URLs. Added install logic for "bluejeansevents" starting on line 1720 --- Installomator.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Installomator.sh b/Installomator.sh index 3f64473..8a0c79b 100755 --- a/Installomator.sh +++ b/Installomator.sh @@ -1717,6 +1717,13 @@ bluejeans) appNewVersion=$(echo $downloadURL | cut -d '/' -f6) expectedTeamID="HE4P42JBGN" ;; +bluejeansevents) + name="BlueJeans Events" + type="pkg" + downloadURL=$(curl -fs "https://www.bluejeans.com/downloads" | xmllint --html --format - 2>/dev/null | grep -o "https://swdl.bluejeans.com/events/release/beta/downloads/BlueJeans_Events.pkg" ) + appNewVersion=$(echo $downloadURL | cut -d '/' -f6) + expectedTeamID="HE4P42JBGN" + ;; boxdrive) name="Box" type="pkg"