mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
12 lines
394 B
Bash
12 lines
394 B
Bash
figma)
|
|
name="Figma"
|
|
type="zip"
|
|
if [[ $(arch) == "arm64" ]]; then
|
|
downloadURL="https://desktop.figma.com/mac-arm/Figma.zip"
|
|
elif [[ $(arch) == "i386" ]]; then
|
|
downloadURL="https://desktop.figma.com/mac/Figma.zip"
|
|
fi
|
|
appNewVersion="$(curl -fsL https://desktop.figma.com/mac/RELEASE.json | awk -F '"' '{ print $8 }')"
|
|
expectedTeamID="T8RA8NE3B7"
|
|
;;
|