Skip to content

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Nelson <[email protected]>
  • Loading branch information
DebugSteven and jyn514 committed Dec 31, 2022
1 parent 7fe2f73 commit 02173f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/x_version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub fn check(bad: &mut bool) {
Ok(child) => child,
Err(e) => match e.kind() {
ErrorKind::NotFound => return,
_ => return tidy_error!(bad, "{}", e),
_ => return tidy_error!(bad, "failed to run `x`: {}", e),
},
};

Expand Down

0 comments on commit 02173f6

Please sign in to comment.