(&mut self)
| 220 | |
| 221 | impl AsyncCommandRunExt for tokio::process::Command { |
| 222 | async fn run(&mut self) -> Result<()> { |
| 223 | let stderr = tempfile::tempfile()?; |
| 224 | self.stderr(stderr.try_clone()?); |
| 225 | self.status().await?.check_status_with_stderr(stderr) |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | #[cfg(test)] |
nothing calls this directly
no test coverage detected