Mist/Scripts/preinstall

12 lines
180 B
Text
Raw Normal View History

2022-07-01 03:46:37 -04:00
#!/usr/bin/env bash
set -e
2022-07-01 06:48:27 -04:00
identifier="com.ninxsoft.mist.helper"
2022-07-01 03:46:37 -04:00
2022-07-01 06:48:27 -04:00
if launchctl print "system/$identifier" &> /dev/null ; then
2022-07-01 03:46:37 -04:00
launchctl bootout "system/$identifier"
fi
exit 0