From c5eb0b880ae50a32986a07800204774e6a12b75b Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 11 Aug 2012 10:27:57 -0500 Subject: [PATCH] options: fix missing leading "--" in output Closes Homebrew/homebrew#14124. Signed-off-by: Jack Nagel --- Library/Homebrew/cmd/options.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb index 8b47b9dadc..530c881677 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