diff options
| author | Dominyk Tiller | 2017-10-14 06:42:53 +0100 |
|---|---|---|
| committer | Dominyk Tiller | 2017-10-14 06:42:53 +0100 |
| commit | c9684c372754ae1e1335ccf27eda128079ff65d0 (patch) | |
| tree | 297f53f9a8b507d844f7282db9a5515c5fb29314 /Library | |
| parent | f1b183b287f7b3d94d5cc5093581fe8c1de8be9d (diff) | |
| download | brew-c9684c372754ae1e1335ccf27eda128079ff65d0.tar.bz2 | |
deps: pass explicit sort to handle APFS
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/deps.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/deps.rb b/Library/Homebrew/cmd/deps.rb index de7aa4a51..ae758e143 100644 --- a/Library/Homebrew/cmd/deps.rb +++ b/Library/Homebrew/cmd/deps.rb @@ -68,16 +68,16 @@ module Homebrew if mode.tree? if mode.installed? - puts_deps_tree Formula.installed, !ARGV.one? + puts_deps_tree Formula.installed.sort, !ARGV.one? else raise FormulaUnspecifiedError if ARGV.named.empty? puts_deps_tree ARGV.formulae, !ARGV.one? end elsif mode.all? - puts_deps Formula + puts_deps Formula.sort elsif ARGV.named.empty? raise FormulaUnspecifiedError unless mode.installed? - puts_deps Formula.installed + puts_deps Formula.installed.sort elsif mode.for_each? puts_deps ARGV.formulae else |
