mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:11:43 +00:00
Fix macOS Update Script (#5014)
* Update updater.sh * Better script * Revert "Better script" This reverts commit 9bf6be863892e5e10c2f2dba45f1d0a60daca688.
This commit is contained in:
parent
fc26189fe1
commit
bba51c2eeb
1 changed files with 2 additions and 2 deletions
|
@ -25,14 +25,14 @@ error_handler() {
|
|||
exit 1
|
||||
}
|
||||
|
||||
trap 'error_handler ${LINENO}' ERR
|
||||
|
||||
# Wait for Ryujinx to exit
|
||||
# NOTE: in case no fds are open, lsof could be returning with a process still living.
|
||||
# We wait 1s and assume the process stopped after that
|
||||
lsof -p $APP_PID +r 1 &>/dev/null
|
||||
sleep 1
|
||||
|
||||
trap 'error_handler ${LINENO}' ERR
|
||||
|
||||
# Now replace and reopen.
|
||||
rm -rf "$INSTALL_DIRECTORY"
|
||||
mv "$NEW_APP_DIRECTORY" "$INSTALL_DIRECTORY"
|
||||
|
|
Loading…
Reference in a new issue