mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:51:44 +00:00
macos: Fix relaunch with updater when no arguments were provided to the emulator (#4987)
The updater still seems to be erroring when replacing installed folder under normal operations.
This commit is contained in:
parent
22202be394
commit
f8cdd5f484
1 changed files with 6 additions and 1 deletions
|
@ -36,4 +36,9 @@ sleep 1
|
|||
# Now replace and reopen.
|
||||
rm -rf "$INSTALL_DIRECTORY"
|
||||
mv "$NEW_APP_DIRECTORY" "$INSTALL_DIRECTORY"
|
||||
open -a "$INSTALL_DIRECTORY" --args "$APP_ARGUMENTS"
|
||||
|
||||
if [ "$#" -le 3 ]; then
|
||||
open -a "$INSTALL_DIRECTORY"
|
||||
else
|
||||
open -a "$INSTALL_DIRECTORY" --args "$APP_ARGUMENTS"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue