Create Windows installer #53
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-07-30 14:30:20 -05:00
parent b1a1824050
commit d97949cc3a

View File

@@ -739,9 +739,9 @@ auto handlers::launch_process(provider_type prov, std::string_view name,
PROCESS_INFORMATION proc_info{}; PROCESS_INFORMATION proc_info{};
auto result = ::CreateProcessA( auto result = ::CreateProcessA(
nullptr, &cmdline[0U], nullptr, nullptr, FALSE, nullptr, &cmdline[0U], nullptr, nullptr, FALSE,
CREATE_NEW_CONSOLE | CREATE_NEW_PROCESS_GROUP | DETACHED_PROCESS, CREATE_NEW_CONSOLE | CREATE_NEW_PROCESS_GROUP, nullptr,
nullptr, utils::path::get_parent_path(repertory_binary_).c_str(), utils::path::get_parent_path(repertory_binary_).c_str(), &start_info,
&start_info, &proc_info); &proc_info);
if (result) { if (result) {
::CloseHandle(proc_info.hProcess); ::CloseHandle(proc_info.hProcess);