2ac2fbdf89
+new ststus icons mac/Parity Ethereum.xcodeproj/project.pbxproj mac/Parity/AppDelegate.swift mac/Parity/Assets.xcassets/statusIcon.imageset/Parity-1.png mac/Parity/Assets.xcassets/statusIcon.imageset/Parity-2.png mac/Parity/Assets.xcassets/statusIcon.imageset/Parity.png mac/Parity/GetBSDProcessList.swift mac/install-readme.txt mac/uninstall-parity.sh scripts/gitlab-build.sh
13 lines
418 B
Bash
Executable File
13 lines
418 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$SUDO_USER" == "" ]] ; then
|
|
echo "This script requires elevated privileges."
|
|
sudo $0
|
|
exit;
|
|
fi
|
|
|
|
PLIST=~/Library/LaunchAgents/io.parity.ethereum.plist
|
|
su $SUDO_USER -c "launchctl stop io.parity.ethereum"
|
|
su $SUDO_USER -c "launchctl unload $PLIST"
|
|
rm -f /usr/local/libexec/parity /usr/local/libexec/uninstall-parity.sh /usr/local/bin/ethstore /usr/local/bin/ethkey /usr/local/bin/parity-evm $PLIST
|