aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/missing.rb
diff options
context:
space:
mode:
authorDominyk Tiller2017-10-14 06:18:09 +0100
committerDominyk Tiller2017-10-14 06:18:09 +0100
commit7b8ba77ed26f84aacc1648eeb78b6d9964adfda2 (patch)
tree274d563b8a92ed24e4bb6c1068f370a8efe15d09 /Library/Homebrew/cmd/missing.rb
parente98d0fda86719794fd35f42b25a22fad408fd7ef (diff)
downloadbrew-7b8ba77ed26f84aacc1648eeb78b6d9964adfda2.tar.bz2
missing: pass explicit sort to handle APFS
Diffstat (limited to 'Library/Homebrew/cmd/missing.rb')
-rw-r--r--Library/Homebrew/cmd/missing.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/missing.rb b/Library/Homebrew/cmd/missing.rb
index 8a1dc506d..707ad6834 100644
--- a/Library/Homebrew/cmd/missing.rb
+++ b/Library/Homebrew/cmd/missing.rb
@@ -16,9 +16,9 @@ module Homebrew
return unless HOMEBREW_CELLAR.exist?
ff = if ARGV.named.empty?
- Formula.installed
+ Formula.installed.sort
else
- ARGV.resolved_formulae
+ ARGV.resolved_formulae.sort
end
ff.each do |f|