mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
12 lines
360 B
Bash
12 lines
360 B
Bash
code42)
|
|
name="Code42"
|
|
type="pkgInDmg"
|
|
if [[ $(arch) == i386 ]]; then
|
|
downloadURL="https://download.code42.com/installs/agent/latest-mac.dmg"
|
|
elif [[ $(arch) == arm64 ]]; then
|
|
downloadURL="https://download.code42.com/installs/agent/latest-mac-arm64.dmg"
|
|
fi
|
|
expectedTeamID="9YV9435DHD"
|
|
blockingProcesses=( NONE )
|
|
;;
|