diff options
| author | mo8it <mo8it@proton.me> | 2024-08-09 01:27:31 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-08-09 01:27:31 +0200 |
| commit | 16af9817721ac1855c66f2dd67627c820b91be5f (patch) | |
| tree | 1057021b9882321cdec5de1df49cb8e510082421 | |
| parent | fc141b8dfc8326c35ad51f77aad4aef41cd62ee9 (diff) | |
Hide stderr of `cargo locate-project`
| -rw-r--r-- | src/init.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.rs b/src/init.rs index 26fe09c..3a7ccf4 100644 --- a/src/init.rs +++ b/src/init.rs @@ -30,7 +30,7 @@ pub fn init() -> Result<()> { .arg("-q") .arg("--workspace") .stdin(Stdio::null()) - .stderr(Stdio::inherit()) + .stderr(Stdio::null()) .output() .context(CARGO_LOCATE_PROJECT_ERR)?; |
