aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_cargo_watch/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_cargo_watch/src/lib.rs b/crates/ra_cargo_watch/src/lib.rs
index ea7ddc86b..a718a5e52 100644
--- a/crates/ra_cargo_watch/src/lib.rs
+++ b/crates/ra_cargo_watch/src/lib.rs
@@ -343,6 +343,7 @@ impl WatchThread {
343 .args(&args) 343 .args(&args)
344 .stdout(Stdio::piped()) 344 .stdout(Stdio::piped())
345 .stderr(Stdio::null()) 345 .stderr(Stdio::null())
346 .stdin(Stdio::null())
346 .spawn() 347 .spawn()
347 .expect("couldn't launch cargo"); 348 .expect("couldn't launch cargo");
348 349