aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/options.rb
diff options
context:
space:
mode:
authorDominyk Tiller2017-10-14 06:25:31 +0100
committerDominyk Tiller2017-10-14 06:35:33 +0100
commitd9074b80b7617e73084a55d8318da3fb67641bbf (patch)
tree2b9c809a13b9feed40eba46e6092af2b0f1901db /Library/Homebrew/cmd/options.rb
parent16ea29a641f1672baa1fead658de2b0ad4f308b2 (diff)
downloadbrew-d9074b80b7617e73084a55d8318da3fb67641bbf.tar.bz2
options: pass explicit sort to handle APFS
Diffstat (limited to 'Library/Homebrew/cmd/options.rb')
-rw-r--r--Library/Homebrew/cmd/options.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb
index 843d3a1ee..6bb6afafe 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -16,9 +16,9 @@ module Homebrew
def options
if ARGV.include? "--all"
- puts_options Formula.to_a
+ puts_options Formula.to_a.sort
elsif ARGV.include? "--installed"
- puts_options Formula.installed
+ puts_options Formula.installed.sort
else
raise FormulaUnspecifiedError if ARGV.named.empty?
puts_options ARGV.formulae