1
Fork 0

Update error message

Co-authored-by: Joshua Nelson <github@jyn.dev>
This commit is contained in:
J Haigh 2022-12-07 13:28:57 -07:00 committed by DebugSteven
parent 7fe2f73ecd
commit 02173f6ab5

View file

@ -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),
},
};