aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/options.rb
diff options
context:
space:
mode:
authorJack Nagel2012-08-11 10:27:57 -0500
committerJack Nagel2012-08-11 10:29:21 -0500
commitc5eb0b880ae50a32986a07800204774e6a12b75b (patch)
treeba4c6f456db2a45c6adaa2ee8cfa9fb13b31e7bc /Library/Homebrew/cmd/options.rb
parentbd1a7e2690c9f84e8a864aa80831b842f39b638b (diff)
downloadbrew-c5eb0b880ae50a32986a07800204774e6a12b75b.tar.bz2
options: fix missing leading "--" in output
Closes Homebrew/homebrew#14124. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
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 8b47b9dad..530c88167 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -32,7 +32,7 @@ module Homebrew extend self
def dump_options_for_formula f
f.build.each do |k,v|
- puts k
+ puts "--"+k
puts "\t"+v
end
end