Skip to content

Commit

Permalink
cleaner error string
Browse files Browse the repository at this point in the history
  • Loading branch information
Brechtpd committed Apr 18, 2024
1 parent f021c1b commit c0beefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provers/sgx/prover/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ fn handle_output(output: &Output, name: &str) -> ProverResult<(), String> {
);
if !output.status.success() {
return Err(format!(
"{} encountered an error {}: {}",
"{} encountered an error ({}): {}",
name,
output.status.to_string(),
String::from_utf8_lossy(&output.stderr),
Expand Down

0 comments on commit c0beefe

Please sign in to comment.