Skip to content

Commit 35ffb65

Browse files
simeonschaubIanButterworth
authored and
KristofferC
committed
fix precompilation error printing if CI is set (#56905)
Co-authored-by: Ian Butterworth <i.r.butterworth@gmail.com> (cherry picked from commit e3f90c4)
1 parent 06a372f commit 35ffb65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/precompilation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@ function _precompilepkgs(pkgs::Vector{String},
10691069
direct = strict ? "" : "direct "
10701070
err_msg = "The following $n_direct_errs $(direct)dependenc$(pluralde) failed to precompile:\n$(String(take!(err_str)))"
10711071
if internal_call # aka. auto-precompilation
1072-
if isinteractive() && !get(ENV, "CI", false)
1072+
if isinteractive()
10731073
plural1 = length(failed_deps) == 1 ? "y" : "ies"
10741074
println(io, " ", color_string("$(length(failed_deps))", Base.error_color()), " dependenc$(plural1) errored.")
10751075
println(io, " For a report of the errors see `julia> err`. To retry use `pkg> precompile`")

0 commit comments

Comments
 (0)