diff options
Diffstat (limited to 'crates/ra_proc_macro/src')
-rw-r--r-- | crates/ra_proc_macro/src/process.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_proc_macro/src/process.rs b/crates/ra_proc_macro/src/process.rs index f4b40ac3c..e8c85be38 100644 --- a/crates/ra_proc_macro/src/process.rs +++ b/crates/ra_proc_macro/src/process.rs | |||
@@ -48,6 +48,7 @@ impl Process { | |||
48 | let child = Command::new(process_path.clone()) | 48 | let child = Command::new(process_path.clone()) |
49 | .stdin(Stdio::piped()) | 49 | .stdin(Stdio::piped()) |
50 | .stdout(Stdio::piped()) | 50 | .stdout(Stdio::piped()) |
51 | .stderr(Stdio::null()) | ||
51 | .spawn()?; | 52 | .spawn()?; |
52 | 53 | ||
53 | Ok(Process { path: process_path.into(), child }) | 54 | Ok(Process { path: process_path.into(), child }) |