5f74f8c265
Signed-off-by: Denis S. Soldatov aka General-Beck <general.beck@gmail.com>
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
|