We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27d376 commit e66a6b3Copy full SHA for e66a6b3
R/quarto.R
@@ -72,10 +72,11 @@ quarto_run <- function(
72
# if there is an error message from quarto CLI, add it to the message
73
if (e$stderr != "") {
74
quarto_error_msg <- xfun::split_lines(e$stderr)
75
+ names(quarto_error_msg) <- rep(" ", length(quarto_error_msg))
76
msg <- c(
77
msg,
78
" " = paste0(rep("-", nchar(msg)), collapse = ""),
- setNames(quarto_error_msg, rep(" ", length(quarto_error_msg)))
79
+ quarto_error_msg
80
)
81
}
82
0 commit comments