Mist/Scripts/preinstall
2022-07-01 20:48:27 +10:00

11 lines
180 B
Bash
Executable file

#!/usr/bin/env bash
set -e
identifier="com.ninxsoft.mist.helper"
if launchctl print "system/$identifier" &> /dev/null ; then
launchctl bootout "system/$identifier"
fi
exit 0