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

11 lines
213 B
Bash
Executable file

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