This commit is contained in:
Julian Freeman
2026-04-04 18:42:23 -04:00
parent fbdfcc8abe
commit 8067cc870f

View File

@@ -314,7 +314,8 @@ async fn execute_post_install(handle: &AppHandle, log_id: &str, steps: Vec<PostI
PostInstallStep::Command { run, .. } => {
emit_log(handle, log_id, "Command Execution", &format!("{}Executing: {}", step_prefix, run), "info");
let output = Command::new("cmd")
.args(["/C", &run])
.arg("/C")
.raw_arg(&run)
.creation_flags(0x08000000)
.output();