Groove Agent 5 available

Just bought it and also downloading through this DLM. But its downloading all files separately. And one download opens in my browser as a kind of script. Why please all so complicated Steinberg?? I just payed nearly 100€ which most until now found way to expensive and than you are not delivering the product in a way which makes no headaches :-/

#!/bin/bash

This script allows chaining the installation of a dmg installer source with registration of content from the same directory

****Configure the product here: ****

The filename of the file to be opened after mounting the image

INSTALLERFILE=“Groove Agent 5.pkg”

The downloaded dmg imagefile to be mounted

IMAGEFILENAME=“GrooveAgent_Application_5.0.10_Installer_mac.dmg”

The name of the mounted volume

VOLUMENAME=“Groove Agent 5”

#change workingdir to script file location.
BASEDIR=$(dirname “$0”)
echo “Setting workingdir to: $BASEDIR”
cd “$BASEDIR”

#make sure to unmount volume in case it is mounted
if [ -d “/Volumes/$VOLUMENAME” ]; then
diskutil unmount “/Volumes/$VOLUMENAME”
fi

open -W “./$IMAGEFILENAME”

hdiutil attach “./$IMAGEFILENAME”

if [ -d “/Volumes/$VOLUMENAME” ]; then
open -W “/Volumes/$VOLUMENAME/$INSTALLERFILE”
fi

echo “Checking if Steinberg Library Manager is installed:”
SLM=“/Applications/Steinberg Library Manager.app”
if [ -d “$SLM” ]; then
echo “Found Steinberg Library Manager”
DEFAULT_SRC=“$BASEDIR”
echo “Default source is:” “$DEFAULT_SRC”
if [[ -d “$DEFAULT_SRC” ]]; then
echo “Starting $DEFAULT_SRC”
open -Wa “$SLM” --args
“$DEFAULT_SRC”
-installer
-supportold
-autoclose
fi
else
echo “ERROR: Steinberg Library Manager not found because it is most likely not installed”
exit 1
fi
echo “"
echo "
Done! You can exit terminal now or pres cmd + q to quit. "
echo "

exit 0