openethereum/mac/uninstall-parity.sh
Denis S. Soldatov aka General-Beck 5f74f8c265
update gitlab build from master
Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com>
2018-01-23 01:50:52 +03:00

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