aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2015-09-13 17:16:20 +0800
committerXu Cheng2015-09-13 17:19:06 +0800
commitf001cdf777f4ce3d4a6967925307361f3d01d313 (patch)
tree93dd041170e23c1b9ac999525511a5bc7421db93 /Library
parent1e344c9672b3d75d549674c7547a55e4194a5b57 (diff)
downloadbrew-f001cdf777f4ce3d4a6967925307361f3d01d313.tar.bz2
Tap#aliases: output fully-qualified name
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/tap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb
index 841c888af..6efcc3af3 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}.