We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 249e4f9 commit 14cab0cCopy full SHA for 14cab0c
1 file changed
R/summarize_result.r
@@ -13,7 +13,7 @@ summarize_result = function(result, n_errors, n_warnings,
13
cond_msgs$errors = cond_msgs$errors[order(as.integer(names(cond_msgs$errors)))]
14
cond_msgs$warnings = cond_msgs$warnings[order(as.integer(names(cond_msgs$warnings)))]
15
cond_msgs = utils::head(c(cond_msgs$errors, cond_msgs$warnings), 50)
16
- detail = paste(unlist(cond_msgs), collapse="\n")
+ detail = paste(trimws(unlist(cond_msgs)), collapse="\n")
17
18
if (n_errors > 0) {
19
msg = sprintf("%i/%i jobs failed (%i warnings)", n_errors, at, n_warnings)
0 commit comments