We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dddc219 commit b28137fCopy full SHA for b28137f
src/AutoBuild.jl
@@ -118,7 +118,7 @@ const BUILD_HELP = (
118
minimum of output messages.
119
120
Supported Platforms:
121
- $(join(map(triplet, supported_platforms()), "\n "))
+ $(join(sort(triplet.(supported_platforms())), "\n "))
122
"""
123
)
124
@@ -745,7 +745,7 @@ function autobuild(dir::AbstractString,
745
@nospecialize
746
747
# This is what we'll eventually return
748
- @info("Building for $(join(triplet.(platforms), ", "))")
+ @info("Building for $(join(sort(triplet.(platforms)), ", "))")
749
build_output_meta = Dict()
750
751
# Resolve dependencies into PackageSpecs now, ensuring we have UUIDs for all deps
0 commit comments