mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
updater: Fixed updater not working properly on macOS
This commit is contained in:
@@ -341,7 +341,7 @@ namespace hex {
|
||||
#if defined(OS_WINDOWS)
|
||||
std::ignore = system(hex::format("start \"\" {0}", command).c_str());
|
||||
#elif defined(OS_MACOS)
|
||||
std::ignore = system(hex::format("open {0}", command).c_str());
|
||||
std::ignore = system(hex::format("{0}", command).c_str());
|
||||
#elif defined(OS_LINUX)
|
||||
executeCmd({"xdg-open", command});
|
||||
#elif defined(OS_WEB)
|
||||
|
||||
Reference in New Issue
Block a user