diff --git a/crates/remote/src/ssh_session.rs b/crates/remote/src/ssh_session.rs index ff51cfda71..e31d3dcfd5 100644 --- a/crates/remote/src/ssh_session.rs +++ b/crates/remote/src/ssh_session.rs @@ -1573,7 +1573,7 @@ impl SshRemoteConnection { // https://github.com/PowerShell/Win32-OpenSSH/wiki/Project-Scope #[cfg(target_os = "windows")] let args = ["-N"]; - let mut master_process = process::Command::new("ssh"); + let mut master_process = util::command::new_smol_command("ssh"); master_process .kill_on_drop(true) .stdin(Stdio::null())