Mist/Scripts/postinstall

12 lines
213 B
Text
Raw Normal View History

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