options: fix missing leading "--" in output

Closes Homebrew/homebrew#14124.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-08-11 10:27:57 -05:00
parent bd1a7e2690
commit c5eb0b880a

View File

@ -32,7 +32,7 @@ module Homebrew extend self
def dump_options_for_formula f def dump_options_for_formula f
f.build.each do |k,v| f.build.each do |k,v|
puts k puts "--"+k
puts "\t"+v puts "\t"+v
end end
end end