mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-13 06:34:44 -04:00
11 lines
213 B
Bash
Executable file
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
|