aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2017-10-14 05:47:17 +0100
committerDominyk Tiller2017-10-14 06:14:27 +0100
commit35fae7ce6ab9a8bb0bde731b294771166ed9bdef (patch)
treea5866991a4da0eb65f44206a7d04dd14705faf38 /Library
parente308df25a9af0e84172448f03a91892a98c92b8a (diff)
downloadbrew-35fae7ce6ab9a8bb0bde731b294771166ed9bdef.tar.bz2
tap-info: pass explicit sort to handle APFS
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/tap-info.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/tap-info.rb b/Library/Homebrew/cmd/tap-info.rb
index cb0e0b387..d01ce8a02 100644
--- a/Library/Homebrew/cmd/tap-info.rb
+++ b/Library/Homebrew/cmd/tap-info.rb
@@ -21,10 +21,11 @@ module Homebrew
module_function
def tap_info
+ # TODO: This still returns a non-alphabetised list on APFS.
if ARGV.include? "--installed"
taps = Tap
else
- taps = ARGV.named.map do |name|
+ taps = ARGV.named.sort.map do |name|
Tap.fetch(name)
end
end