Updater: Ensure forward slashes are converted to backslashes

Old versions may run the updater with forward slashes.
This commit is contained in:
Stenzek 2024-04-16 12:28:35 +10:00
parent 9eb9fc9dce
commit 797b82dcfa
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -51,9 +51,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLi
}
const int parent_process_id = StringUtil::FromChars<int>(StringUtil::WideStringToUTF8String(argv[0])).value_or(0);
std::string destination_directory = StringUtil::WideStringToUTF8String(argv[1]);
std::string destination_directory = Path::ToNativePath(StringUtil::WideStringToUTF8String(argv[1]));
std::string staging_directory = Path::Combine(destination_directory, "UPDATE_STAGING");
std::string zip_path = StringUtil::WideStringToUTF8String(argv[2]);
std::string zip_path = Path::ToNativePath(StringUtil::WideStringToUTF8String(argv[2]));
std::wstring program_to_launch(argv[3]);
LocalFree(argv);