fah-control/osx/scripts/preinstall
Kevin Bernhagen b618a7713d preinstall remove old FAHControl
remove old app so system will not relocate if app bundle id has changed
2018-05-11 08:44:33 -07:00

19 lines
508 B
Bash
Executable File

#!/bin/bash -e
# fahcontrol preinstall
# delete old app, so system will not relocate if bundle id has changed
# also delete improperly moved app and cruft
A1="/Applications/Folding@home/FAHControl.app"
A2="/Applications/Folding@home/FAHControl/FAHControl.app"
F1="/Applications/Folding@home/FAHControl/.DS_Store"
D1="/Applications/Folding@home/FAHControl"
[ -d "$A1" ] && rm -rf "$A1" || true
[ -d "$A2" ] && rm -rf "$A2" || true
[ -f "$F1" ] && rm -f "$F1" || true
[ -d "$D1" ] && rmdir "$D1" || true