Skip to content

Commit 3bc1670

Browse files
committed
Redirect stderr to null
1 parent 6ed030d commit 3bc1670

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/ra_proc_macro/src/process.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ impl Process {
4848
let child = Command::new(process_path.clone())
4949
.stdin(Stdio::piped())
5050
.stdout(Stdio::piped())
51+
.stderr(Stdio::null())
5152
.spawn()?;
5253

5354
Ok(Process { path: process_path.into(), child })

0 commit comments

Comments
 (0)