commands: pass explicit sort to handle APFS

This commit is contained in:
Dominyk Tiller 2017-10-14 04:24:10 +01:00
parent ca69d65456
commit e308df25a9
No known key found for this signature in database
GPG Key ID: FE19AEFCF658C6F6

View File

@ -16,12 +16,12 @@ module Homebrew
else
# Find commands in Homebrew/cmd
puts "Built-in commands"
puts Formatter.columns(internal_commands)
puts Formatter.columns(internal_commands.sort)
# Find commands in Homebrew/dev-cmd
puts
puts "Built-in developer commands"
puts Formatter.columns(internal_developer_commands)
puts Formatter.columns(internal_developer_commands.sort)
# Find commands in the path
unless (exts = external_commands).empty?