Skip to content

Commit

Permalink
Merge pull request bitcoin-core#555 from miles170/issue-549-rework-ci…
Browse files Browse the repository at this point in the history
…-log-output

ci: Rework CI log output (\n)
  • Loading branch information
MarcoFalke authored Jan 4, 2023
2 parents c4cca6b + 31a276b commit cc6241e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/touched-files-check/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ fn main() {
.expect("git error");
assert!(git_diff.status.success());
let touched_files = String::from_utf8(git_diff.stdout).expect("Invalid utf8");
let (atts, builder_keys) = check(&touched_files).expect("ci check failed");
check_attestations(atts, builder_keys).expect("ci check failed");
let (atts, builder_keys) = check(&touched_files).unwrap_or_else(|e| panic!("ci check failed:\n\n{e}\n\n"));
check_attestations(atts, builder_keys).unwrap_or_else(|e| panic!("ci check failed:\n\n{e}\n\n"));
}

#[test]
Expand Down

0 comments on commit cc6241e

Please sign in to comment.