aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXu Cheng2015-05-27 21:05:55 +0800
committerXu Cheng2015-05-29 17:02:22 +0800
commit8ff4f46e0cdae86b3d3531566901c52ac484f55b (patch)
treec2b343b9a36bf93447b429992c6ce2220cf45b57
parent4d27fe09791ec6e7c61562f012910fd032df9678 (diff)
downloadbrew-8ff4f46e0cdae86b3d3531566901c52ac484f55b.tar.bz2
missing: use Formula#full_name
-rw-r--r--Library/Homebrew/cmd/missing.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/missing.rb b/Library/Homebrew/cmd/missing.rb
index e23eac010..9c675b8fe 100644
--- a/Library/Homebrew/cmd/missing.rb
+++ b/Library/Homebrew/cmd/missing.rb
@@ -18,8 +18,8 @@ module Homebrew
missing_deps.reject! { |d| d.rack.exist? && d.rack.subdirs.length > 0 }
unless missing_deps.empty?
- yield f.name, missing_deps if block_given?
- missing[f.name] = missing_deps
+ yield f.full_name, missing_deps if block_given?
+ missing[f.full_name] = missing_deps
end
end
missing