diff options
| author | Jack Nagel | 2014-07-19 23:28:56 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-19 23:28:56 -0500 |
| commit | c18eea6a17b3818d70e20389c8200939a764ec8e (patch) | |
| tree | 9a97ba3d8843e499738911edf2fb20a7c33695f5 /Library | |
| parent | 74ad97ce7f3325fc0a16c5ec3262e191a92667cd (diff) | |
| download | brew-c18eea6a17b3818d70e20389c8200939a764ec8e.tar.bz2 | |
Default to stdout since other code calls this method
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/config.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/config.rb b/Library/Homebrew/cmd/config.rb index 0e91845c6..037294655 100644 --- a/Library/Homebrew/cmd/config.rb +++ b/Library/Homebrew/cmd/config.rb @@ -91,7 +91,7 @@ module Homebrew end # we try to keep output minimal - def dump_build_config(f) + def dump_build_config(f=STDOUT) f.puts "HOMEBREW_VERSION: #{HOMEBREW_VERSION}" f.puts "HEAD: #{head}" f.puts "HOMEBREW_PREFIX: #{HOMEBREW_PREFIX}" if HOMEBREW_PREFIX.to_s != "/usr/local" |
