diff --git a/src/API.jl b/src/API.jl index a71f4781e3..4d0bd53442 100644 --- a/src/API.jl +++ b/src/API.jl @@ -1552,7 +1552,7 @@ function precompile(ctx::Context, pkgs::Vector{PackageSpec}; internal_call::Bool if !isempty(stderr_outputs) plural1 = length(stderr_outputs) == 1 ? "y" : "ies" plural2 = length(stderr_outputs) == 1 ? "" : "s" - print(iostr, "\n ", color_string("$(length(stderr_outputs))", Base.warn_color()), " dependenc$(plural1) had warnings during precompilation:") + print(iostr, "\n ", color_string("$(length(stderr_outputs))", Base.warn_color()), " dependenc$(plural1) had output during precompilation:") for (pkgid, err) in stderr_outputs err = join(split(err, "\n"), color_string("\n│ ", Base.warn_color())) print(iostr, color_string("\n┌ ", Base.warn_color()), pkgid, color_string("\n│ ", Base.warn_color()), err, color_string("\n└ ", Base.warn_color()))