From f001cdf777f4ce3d4a6967925307361f3d01d313 Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sun, 13 Sep 2015 17:16:20 +0800 Subject: [PATCH] Tap#aliases: output fully-qualified name --- Library/Homebrew/tap.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index 841c888af2..6efcc3af3d 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -105,7 +105,7 @@ class Tap # an array of all aliases of this {Tap}. # @private def aliases - alias_files.map { |f| f.basename.to_s } + alias_files.map { |f| "#{name}/#{f.basename}" } end # an array of all commands files of this {Tap}.