mirror of
https://github.com/mtan93/Installomator.git
synced 2026-03-08 05:31:53 +00:00
14 lines
636 B
Bash
14 lines
636 B
Bash
dbeaverce)
|
|
name="DBeaver"
|
|
type="dmg"
|
|
if [[ $(arch) == "arm64" ]]; then
|
|
downloadURL="https://dbeaver.io/files/dbeaver-ce-latest-macos-aarch64.dmg"
|
|
appNewVersion="$(curl -fsIL "${downloadURL}" | grep -i ^location | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1)"
|
|
elif [[ $(arch) == "i386" ]]; then
|
|
downloadURL="https://dbeaver.io/files/dbeaver-ce-latest-macos.dmg"
|
|
appNewVersion="$(curl -fsIL "${downloadURL}" | grep -i ^location | sed 's/^.*[^0-9]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/' | head -1)"
|
|
fi
|
|
expectedTeamID="42B6MDKMW8"
|
|
blockingProcesses=( dbeaver )
|
|
;;
|