Skip to content

Commit

Permalink
fix: Executor::output() should not use output_checked()
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed Dec 10, 2024
1 parent 8227890 commit 14ea9f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/executor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl Executor {
/// See `std::process::Command::output`
pub fn output(&mut self) -> Result<ExecutorOutput> {
match self {
Executor::Wet(c) => Ok(ExecutorOutput::Wet(c.output_checked()?)),
Executor::Wet(c) => Ok(ExecutorOutput::Wet(c.output()?)),
Executor::Dry(c) => {
c.dry_run();
Ok(ExecutorOutput::Dry)
Expand Down

0 comments on commit 14ea9f4

Please sign in to comment.