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 215aeb9 commit c2fd281Copy full SHA for c2fd281
base/precompilation.jl
@@ -551,8 +551,9 @@ function precompilepkgs(pkgs::Vector{String}=String[];
551
else
552
target = "project"
553
end
554
- if length(configs) > 1 || !isempty(only(configs)[1]) # if multiple configs or only one is not default
555
- target *= " for $(length(configs)) compilation configurations..."
+ nconfig = length(configs)
+ if nconfig > 1 || !isempty(only(configs)[1]) # if multiple configs or only one is not default
556
+ target *= " for $nconfig compilation configuration$(nconfig > 1 ? "s" : "")..."
557
558
target *= "..."
559
0 commit comments