fix: update object id paths for new server

This commit is contained in:
DecDuck
2025-05-10 15:25:40 +10:00
parent fed3e08dce
commit 65561abdab
9 changed files with 101 additions and 23 deletions
+2 -2
View File
@@ -267,9 +267,9 @@ impl ProcessManager<'_> {
.to_string();
#[cfg(target_os = "windows")]
let mut command = Command::new("cmd");
let mut command = Command::new("start");
#[cfg(target_os = "windows")]
command.args(["/C", &launch_string]);
command.raw_arg(["/b", "\"\"", &launch_string]);
info!("launching (in {}): {}", install_dir, launch_string,);