openethereum/mac/post-install.sh

7 lines
231 B
Bash
Raw Normal View History

#!/bin/bash
2017-01-29 20:22:45 +01:00
# uninstall any ancient version
test -f /usr/local/libexec/uninstall-parity.sh && /usr/local/libexec/uninstall-parity.sh || true
killall -9 parity && sleep 5
su $USER -c "open /Applications/Parity\ Ethereum.app"
exit 0