mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
12 lines
330 B
Bash
12 lines
330 B
Bash
miro)
|
|
# credit: @matins
|
|
name="Miro"
|
|
type="dmg"
|
|
if [[ $(arch) == arm64 ]]; then
|
|
downloadURL="https://desktop.miro.com/platforms/darwin-arm64/Miro.dmg"
|
|
elif [[ $(arch) == i386 ]]; then
|
|
downloadURL="https://desktop.miro.com/platforms/darwin/Miro.dmg"
|
|
fi
|
|
expectedTeamID="M3GM7MFY7U"
|
|
;;
|