From b1e3c2bd3d4e9d686618f4be01edb6cb73cdc97c Mon Sep 17 00:00:00 2001 From: emiyl Date: Sun, 19 Apr 2026 13:18:44 +0100 Subject: [PATCH] Update CemuUpdateWindow.cpp to use new update.sh path --- src/gui/wxgui/CemuUpdateWindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/wxgui/CemuUpdateWindow.cpp b/src/gui/wxgui/CemuUpdateWindow.cpp index fd51467d..53674a58 100644 --- a/src/gui/wxgui/CemuUpdateWindow.cpp +++ b/src/gui/wxgui/CemuUpdateWindow.cpp @@ -616,7 +616,8 @@ void CemuUpdateWindow::OnClose(wxCloseEvent& event) { const auto tmppath = fs::temp_directory_path() / L"cemu_update/Cemu.dmg"; fs::path exePath = ActiveSettings::GetExecutablePath().parent_path(); - const auto apppath = exePath / L"update.sh"; + const auto appResources = exePath.parent_path().parent_path() / L"Resources"; + const auto apppath = appResources / L"update.sh"; execlp("sh", "sh", apppath.c_str(), NULL); exit(0);