aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/options.rb
diff options
context:
space:
mode:
authorJack Nagel2013-03-20 22:31:15 -0500
committerJack Nagel2013-03-20 22:32:56 -0500
commit46476ae4d06876782a4cd3e675d84f240f0c047c (patch)
tree87811262a838e6d2bd5e4f270e4e89f8f612c95c /Library/Homebrew/cmd/options.rb
parent8d000110ccd33464f23d3b4cfac75908b61f802c (diff)
downloadbrew-46476ae4d06876782a4cd3e675d84f240f0c047c.tar.bz2
Fix `brew options --all`
Fixes Homebrew/homebrew#18625.
Diffstat (limited to 'Library/Homebrew/cmd/options.rb')
-rw-r--r--Library/Homebrew/cmd/options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb
index 94d0df065..61b876e2f 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -3,7 +3,7 @@ require 'cmd/outdated'
def ff
if ARGV.include? "--all"
- Formula
+ Formula.to_a
elsif ARGV.include? "--installed"
# outdated brews count as installed
outdated = Homebrew.outdated_brews.collect{ |b| b.name }