(&mut self)
| 133 | |
| 134 | impl CommandRunExt for Command { |
| 135 | fn run_inherited(&mut self) -> Result<()> { |
| 136 | tracing::trace!("exec: {self:?}"); |
| 137 | self.status()?.check_status() |
| 138 | } |
| 139 | |
| 140 | /// Synchronously execute the child, and return an error if the child exited unsuccessfully. |
| 141 | fn run_capture_stderr(&mut self) -> Result<()> { |