mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-15 01:17:27 +00:00
Redirect stderr to null
This commit is contained in:
parent
6ed030d4b6
commit
3bc1670feb
1 changed files with 1 additions and 0 deletions
|
@ -48,6 +48,7 @@ impl Process {
|
|||
let child = Command::new(process_path.clone())
|
||||
.stdin(Stdio::piped())
|
||||
.stdout(Stdio::piped())
|
||||
.stderr(Stdio::null())
|
||||
.spawn()?;
|
||||
|
||||
Ok(Process { path: process_path.into(), child })
|
||||
|
|
Loading…
Reference in a new issue