aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-07-19 23:28:56 -0500
committerJack Nagel2014-07-19 23:28:56 -0500
commitc18eea6a17b3818d70e20389c8200939a764ec8e (patch)
tree9a97ba3d8843e499738911edf2fb20a7c33695f5 /Library
parent74ad97ce7f3325fc0a16c5ec3262e191a92667cd (diff)
downloadbrew-c18eea6a17b3818d70e20389c8200939a764ec8e.tar.bz2
Default to stdout since other code calls this method
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/config.rb2
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"