mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 22:01:37 +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())
|
let child = Command::new(process_path.clone())
|
||||||
.stdin(Stdio::piped())
|
.stdin(Stdio::piped())
|
||||||
.stdout(Stdio::piped())
|
.stdout(Stdio::piped())
|
||||||
|
.stderr(Stdio::null())
|
||||||
.spawn()?;
|
.spawn()?;
|
||||||
|
|
||||||
Ok(Process { path: process_path.into(), child })
|
Ok(Process { path: process_path.into(), child })
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue