mirror of
https://github.com/fleetdm/fleet
synced 2026-05-05 14:28:46 +00:00
71 lines
2 KiB
Bash
71 lines
2 KiB
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# variables
|
||
|
|
APPDIR="/Applications/"
|
||
|
|
TMPDIR=$(dirname "$(realpath $INSTALLER_PATH)")
|
||
|
|
|
||
|
|
# functions
|
||
|
|
|
||
|
|
quit_application() {
|
||
|
|
local bundle_id="$1"
|
||
|
|
local timeout_duration=10
|
||
|
|
|
||
|
|
# check if the application is running
|
||
|
|
if ! osascript -e "application id \"$bundle_id\" is running" 2>/dev/null; then
|
||
|
|
return
|
||
|
|
fi
|
||
|
|
|
||
|
|
local console_user
|
||
|
|
console_user=$(stat -f "%Su" /dev/console)
|
||
|
|
if [[ $EUID -eq 0 && "$console_user" == "root" ]]; then
|
||
|
|
echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'."
|
||
|
|
return
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "Quitting application '$bundle_id'..."
|
||
|
|
|
||
|
|
# try to quit the application within the timeout period
|
||
|
|
local quit_success=false
|
||
|
|
SECONDS=0
|
||
|
|
while (( SECONDS < timeout_duration )); do
|
||
|
|
if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then
|
||
|
|
if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then
|
||
|
|
echo "Application '$bundle_id' quit successfully."
|
||
|
|
quit_success=true
|
||
|
|
break
|
||
|
|
fi
|
||
|
|
fi
|
||
|
|
sleep 1
|
||
|
|
done
|
||
|
|
|
||
|
|
if [[ "$quit_success" = false ]]; then
|
||
|
|
echo "Application '$bundle_id' did not quit."
|
||
|
|
fi
|
||
|
|
}
|
||
|
|
|
||
|
|
# extract contents
|
||
|
|
MOUNT_POINT=$(mktemp -d /tmp/dmg_mount_XXXXXX)
|
||
|
|
hdiutil attach -plist -nobrowse -readonly -mountpoint "$MOUNT_POINT" "$INSTALLER_PATH"
|
||
|
|
sudo cp -R "$MOUNT_POINT"/* "$TMPDIR"
|
||
|
|
hdiutil detach "$MOUNT_POINT"
|
||
|
|
|
||
|
|
# copy to the applications folder
|
||
|
|
# Homebrew uses: app "Grammarly Installer.app", target: "Grammarly Desktop.app"
|
||
|
|
# This means we extract "Grammarly Installer.app" and copy it to "/Applications/Grammarly Desktop.app"
|
||
|
|
quit_application 'com.grammarly.ProjectLlama'
|
||
|
|
|
||
|
|
# Remove existing app if present
|
||
|
|
if [ -d "$APPDIR/Grammarly Desktop.app" ]; then
|
||
|
|
sudo rm -rf "$APPDIR/Grammarly Desktop.app"
|
||
|
|
fi
|
||
|
|
|
||
|
|
# Copy Grammarly Installer.app from temp directory to Applications as Grammarly Desktop.app
|
||
|
|
if [ -d "$TMPDIR/Grammarly Installer.app" ]; then
|
||
|
|
sudo cp -R "$TMPDIR/Grammarly Installer.app" "$APPDIR/Grammarly Desktop.app"
|
||
|
|
echo "Installation verified"
|
||
|
|
else
|
||
|
|
echo "Error: Grammarly Installer.app not found in extracted files"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|