(self)
| 61 | /// [`Output`]: std::process::Output |
| 62 | #[track_caller] |
| 63 | fn unwrap(self) -> process::Output { |
| 64 | match self.ok() { |
| 65 | Ok(output) => output, |
| 66 | Err(err) => panic!("{}", err), |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /// Unwrap a [`Output`] but with a prettier message than `ok().err().unwrap()`. |
| 71 | /// |