mirror of
https://github.com/casey/just.git
synced 2025-07-07 17:45:00 +00:00
8 lines
289 B
Rust
8 lines
289 B
Rust
#[track_caller]
|
|
pub(crate) fn assert_success(output: &std::process::Output) {
|
|
if !output.status.success() {
|
|
eprintln!("stderr: {}", String::from_utf8_lossy(&output.stderr));
|
|
eprintln!("stdout: {}", String::from_utf8_lossy(&output.stdout));
|
|
panic!("{}", output.status);
|
|
}
|
|
}
|