aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorAdam Vandenberg2014-03-08 07:34:27 -0800
committerAdam Vandenberg2014-03-08 07:43:36 -0800
commit85c93ad22c54f83d439a87a05069f861a5864bd0 (patch)
tree5e8d26094afb41351def186df1f121f6221b48db /Library/Homebrew/cmd
parent53c2532c262826353c6dfe6e56d2a35ecc9d2a1c (diff)
downloadbrew-85c93ad22c54f83d439a87a05069f861a5864bd0.tar.bz2
remove brew info --all
Closes Homebrew/homebrew#27322.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/info.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb
index d88cd0b12..863138b89 100644
--- a/Library/Homebrew/cmd/info.rb
+++ b/Library/Homebrew/cmd/info.rb
@@ -20,12 +20,7 @@ module Homebrew extend self
def print_info
if ARGV.named.empty?
- if ARGV.include? "--all"
- Formula.each do |f|
- info_formula f
- puts '---'
- end
- elsif HOMEBREW_CELLAR.exist?
+ if HOMEBREW_CELLAR.exist?
puts "#{HOMEBREW_CELLAR.children.length} kegs, #{HOMEBREW_CELLAR.abv}"
end
else