aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChad Catlett2013-01-14 08:23:34 -0600
committerAdam Vandenberg2013-01-14 06:44:53 -0800
commit8361c218c8b4a6b955fd142adc7f0b33c76f2dfa (patch)
tree5d153b7b8134fb439f4c338f43f6e34dbe9ec105 /Library
parent3b6d75d7a1fbd8ae13f46a84d3e726ef25c58ad0 (diff)
downloadhomebrew-8361c218c8b4a6b955fd142adc7f0b33c76f2dfa.tar.bz2
Fix uses cmd
Fixes #17074. Closes #17075. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/uses.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/uses.rb b/Library/Homebrew/cmd/uses.rb
index fc463c6f3..4d24266c1 100644
--- a/Library/Homebrew/cmd/uses.rb
+++ b/Library/Homebrew/cmd/uses.rb
@@ -14,7 +14,7 @@ module Homebrew extend self
if ARGV.flag? '--recursive'
f.recursive_deps.include? ff
else
- f.deps.include? ff.name
+ f.deps.include? ff
end
end
end