diff options
| author | Jack Nagel | 2012-08-11 10:27:57 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-08-11 10:29:21 -0500 |
| commit | c5eb0b880ae50a32986a07800204774e6a12b75b (patch) | |
| tree | ba4c6f456db2a45c6adaa2ee8cfa9fb13b31e7bc /Library/Homebrew/cmd/options.rb | |
| parent | bd1a7e2690c9f84e8a864aa80831b842f39b638b (diff) | |
| download | brew-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.rb | 2 |
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 |
