mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
13 lines
556 B
Bash
13 lines
556 B
Bash
postman)
|
|
name="Postman"
|
|
type="zip"
|
|
if [[ $(arch) == "arm64" ]]; then
|
|
downloadURL="https://dl.pstmn.io/download/latest/osx_arm64"
|
|
appNewVersion=$(curl -fsL --head "${downloadURL}" | grep "content-disposition:" | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')
|
|
elif [[ $(arch) == "i386" ]]; then
|
|
downloadURL="https://dl.pstmn.io/download/latest/osx_64"
|
|
appNewVersion=$(curl -fsL --head "${downloadURL}" | grep "content-disposition:" | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/')
|
|
fi
|
|
expectedTeamID="H7H8Q7M5CK"
|
|
;;
|