Files
Installomator/fragments/labels/jetbrainspycharm.sh
Søren Theilgaard cfaac1eb28 more label syncs
2021-08-27 11:17:41 +02:00

12 lines
570 B
Bash

jetbrainspycharm)
# This is the Pro version of PyCharm. Do not confuse with PyCharm CE.
name="PyCharm"
type="dmg"
if [[ $(arch) == i386 ]]; then
downloadURL="https://download.jetbrains.com/product?code=PCP&latest&distribution=mac"
elif [[ $(arch) == arm64 ]]; then
downloadURL="https://download.jetbrains.com/product?code=PCP&latest&distribution=macM1"
fi
appNewVersion=$( curl -fsIL "${downloadURL}" | grep -i "location" | tail -1 | sed -E 's/.*\/[a-zA-Z-]*-([0-9.]*).*[-.].*dmg/\1/g' )
expectedTeamID="2ZEFAR8TH3"
;;