windows: Don't show cmd window when remoting (#34187)
Release Notes: - N/A
This commit is contained in:
parent
76e52ea374
commit
3169f06404
1 changed files with 1 additions and 1 deletions
|
@ -1573,7 +1573,7 @@ impl SshRemoteConnection {
|
||||||
// https://github.com/PowerShell/Win32-OpenSSH/wiki/Project-Scope
|
// https://github.com/PowerShell/Win32-OpenSSH/wiki/Project-Scope
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
let args = ["-N"];
|
let args = ["-N"];
|
||||||
let mut master_process = process::Command::new("ssh");
|
let mut master_process = util::command::new_smol_command("ssh");
|
||||||
master_process
|
master_process
|
||||||
.kill_on_drop(true)
|
.kill_on_drop(true)
|
||||||
.stdin(Stdio::null())
|
.stdin(Stdio::null())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue