aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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 273969c95..8145e517b 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -11,7 +11,7 @@ end
module Homebrew extend self
def options
ff.each do |f|
- f.options rescue next
+ next if f.options.empty?
if ARGV.include? '--compact'
puts f.options.collect {|o| o[0]} * " "
else