aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorilovezfs2016-09-29 11:28:01 +0100
committerAlyssa Ross2016-10-25 22:34:35 +0100
commit7fa4ffe3dc3dd577fa04c374cc965c1b6f303632 (patch)
tree6ef647ec3e0e3a88a38ba316f05b821436d23515 /Library/Homebrew/cmd
parented0fffd93117a5d2d0297c5965d661e2e7e250de (diff)
downloadbrew-7fa4ffe3dc3dd577fa04c374cc965c1b6f303632.tar.bz2
missing: allow hiding specified formulae
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/missing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/missing.rb b/Library/Homebrew/cmd/missing.rb
index 148fe5bef..4a9e0b7b3 100644
--- a/Library/Homebrew/cmd/missing.rb
+++ b/Library/Homebrew/cmd/missing.rb
@@ -18,7 +18,7 @@ module Homebrew
ARGV.resolved_formulae
end
- Diagnostic.missing_deps(ff) do |name, missing|
+ Diagnostic.missing_deps(ff, ARGV.value("hide")) do |name, missing|
print "#{name}: " if ff.size > 1
puts missing.join(" ")
end