mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-12 22:26:15 -04:00
11 lines
180 B
Bash
Executable file
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
|