Skip to content

Commit

Permalink
fix orphaned cmd process (#639)
Browse files Browse the repository at this point in the history
closes #252
  • Loading branch information
trippjoe authored Dec 29, 2024
1 parent 58e3586 commit 64a9b2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/src/commands/binaries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ pub async fn open_repl(
command = std::process::Command::new("cmd");
command
.args([
"/K",
"/C",
"start",
&bin_ext("goalc"),
"--game",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/commands/features/mods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ pub async fn open_repl_for_mod(
command = std::process::Command::new("cmd");
command
.args([
"/K",
"/C",
"start",
&bin_ext("goalc"),
"--game",
Expand Down

0 comments on commit 64a9b2f

Please sign in to comment.