Skip to content

Commit ee3dff9

Browse files
committed
multiline failure message
1 parent c7cc5f0 commit ee3dff9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

build/build/src/enso.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,13 @@ impl BuiltEnso {
266266
if errors.is_empty() {
267267
Ok(())
268268
} else {
269-
let summary =
270-
errors.as_slice().iter().map(|e| e.to_string()).collect::<Vec<_>>().join(", ");
269+
let summary = errors
270+
.as_slice()
271+
.iter()
272+
.map(|e| e.to_string())
273+
.collect::<Vec<_>>()
274+
.join(";\n")
275+
.replace("\n", "%0A");
271276
println!(
272277
"::error title=Failed Standard Library Tests::{} test suite(s) failed: {}",
273278
errors.len(),

0 commit comments

Comments
 (0)