Run the command, returning an error if the command does not exit successfully.
(self)
| 90 | |
| 91 | /// Run the command, returning an error if the command does not exit successfully. |
| 92 | pub(crate) fn run(self) -> Result<()> { |
| 93 | self.run_with_stdin_buf(None) |
| 94 | } |
| 95 | |
| 96 | fn pre_run_output(&self) { |
| 97 | match self.verbosity { |