From a0e0a6c6a6b1b51b51fe58dc356d33916f3ef3f3 Mon Sep 17 00:00:00 2001 From: schm1dtmac Date: Sun, 4 Jan 2026 15:19:28 +0000 Subject: [PATCH] [macOS Updater] Cleanup remnants of the old app bundle post-update --- rpcs3/update_helper.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpcs3/update_helper.sh b/rpcs3/update_helper.sh index bc51edebe6..380d845980 100755 --- a/rpcs3/update_helper.sh +++ b/rpcs3/update_helper.sh @@ -10,5 +10,6 @@ fi new_app="$1/" old_app="$2/" -cp -Rf -p "$new_app" "$old_app" +rm -rf "$old_app" +mv "$new_app" "$old_app" open -n -a "$2" --args --updating