From 35fae7ce6ab9a8bb0bde731b294771166ed9bdef Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Sat, 14 Oct 2017 05:47:17 +0100 Subject: [PATCH] tap-info: pass explicit sort to handle APFS --- Library/Homebrew/cmd/tap-info.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/tap-info.rb b/Library/Homebrew/cmd/tap-info.rb index cb0e0b387e..d01ce8a027 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