missing: pass explicit sort to handle APFS

This commit is contained in:
Dominyk Tiller 2017-10-14 06:18:09 +01:00
parent e98d0fda86
commit 7b8ba77ed2
No known key found for this signature in database
GPG Key ID: FE19AEFCF658C6F6

View File

@ -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|