7b5824d4a2
* Fix --geth * Fix mac installer. * Fix up installer. * Additional tweaks. * Fix for empty APIs * Another case of empty apis
14 lines
371 B
Bash
Executable File
14 lines
371 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 $PLIST
|
|
|