diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/zen/cmds/service_cmd.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/zen/cmds/service_cmd.cpp b/src/zen/cmds/service_cmd.cpp index 3847c423d..398bbfc83 100644 --- a/src/zen/cmds/service_cmd.cpp +++ b/src/zen/cmds/service_cmd.cpp @@ -435,13 +435,14 @@ ServiceCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) ExePath, m_ServerExecutable, #if ZEN_PLATFORM_WINDOWS - ExePath.replace_extension("pdb"), - m_ServerExecutable.replace_extension("pdb"), - ExePath - .replace_filename("crashpad_handler.exe") + ExePath.parent_path() / ExePath.stem().replace_extension("pdb"), + m_ServerExecutable.parent_path() / m_ServerExecutable.stem().replace_extension("pdb"), + ExePath.parent_path() / + std::filesystem::path("crashpad_handler.exe") #endif #if ZEN_PLATFORM_MAC - ExePath.replace_filename("crashpad_handler") + ExePath.parent_path() / + std::filesystem::path("crashpad_handler") #endif }; @@ -457,6 +458,7 @@ ServiceCommand::Run(const ZenCliOptions& GlobalOptions, int argc, char** argv) for (const std::filesystem::path& File : FilesToCopy) { std::filesystem::path Destination = m_InstallPath / File.filename(); + if (!CopyFile(File, Destination, {.EnableClone = false})) { ZEN_CONSOLE("Failed to copy '{}' to '{}'", File, Destination); |