6ecc855c34
Since we start parity with the UI disabled per default now, opening the browser post installation will show an annoying error message, confusing the user. This patch removes opening the browser to prevent that annoyance. fixes #8194
7 lines
231 B
Bash
Executable File
7 lines
231 B
Bash
Executable File
#!/bin/bash
|
|
# 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
|