diff --git a/crates/project/src/terminals.rs b/crates/project/src/terminals.rs index f9f3672cf2f53516725108b761fe3c09b0064fee..a1fc6b4613ca92984c3d684b3c7397d60e7699a0 100644 --- a/crates/project/src/terminals.rs +++ b/crates/project/src/terminals.rs @@ -199,14 +199,7 @@ impl Project { activation_script.join(&format!("{separator} ")); let to_run = format_to_run(); - let mut arg = - format!("{activation_script}{separator} {to_run}"); - if shell_kind == ShellKind::Cmd { - // We need to put the entire command in quotes since otherwise CMD tries to execute them - // as separate commands rather than chaining one after another. - arg = format!("\"{arg}\""); - } - + let arg = format!("{activation_script}{separator} {to_run}"); let args = shell_kind.args_for_shell(false, arg); (