Skip to content

Commit b28137f

Browse files
authored
Sort architecture lists in output (#1213)
1 parent dddc219 commit b28137f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AutoBuild.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ const BUILD_HELP = (
118118
minimum of output messages.
119119
120120
Supported Platforms:
121-
$(join(map(triplet, supported_platforms()), "\n "))
121+
$(join(sort(triplet.(supported_platforms())), "\n "))
122122
"""
123123
)
124124

@@ -745,7 +745,7 @@ function autobuild(dir::AbstractString,
745745
@nospecialize
746746

747747
# This is what we'll eventually return
748-
@info("Building for $(join(triplet.(platforms), ", "))")
748+
@info("Building for $(join(sort(triplet.(platforms)), ", "))")
749749
build_output_meta = Dict()
750750

751751
# Resolve dependencies into PackageSpecs now, ensuring we have UUIDs for all deps

0 commit comments

Comments
 (0)