replaced resume_unwind with process::exit to fix

bootstrap panic when running x fmt --check.
running x fmt --check
This commit is contained in:
shourya5 2022-08-09 22:55:57 +05:30
parent 6d3f1beae1
commit 9e553108c7

View File

@ -1632,13 +1632,10 @@ fn chmod(_path: &Path, _perms: u32) {}
/// If the test is running and code is an error code, it will cause a panic.
fn detail_exit(code: i32) -> ! {
// Successful exit
if code == 0 {
std::process::exit(0);
}
if cfg!(test) {
if cfg!(test) && code != 0 {
panic!("status code: {}", code);
} else {
std::panic::resume_unwind(Box::new(code));
std::process::exit(code);
}
}