diff options
| author | Mike McQuaid | 2016-05-08 20:38:17 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2016-05-08 20:38:17 +0100 | 
| commit | c7edf9a063dce63afb9ab54b6d71fe864d578365 (patch) | |
| tree | 1d47b49ad980b1922012356c7d263f0ac2953cb9 | |
| parent | ed9f7308b265944c27c833b9a2aaa0e911ff5667 (diff) | |
| download | brew-c7edf9a063dce63afb9ab54b6d71fe864d578365.tar.bz2 | |
gist-logs: fix system_config reference.
| -rw-r--r-- | Library/Homebrew/cmd/gist-logs.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/gist-logs.rb b/Library/Homebrew/cmd/gist-logs.rb index 5954c031e..f51e20ed3 100644 --- a/Library/Homebrew/cmd/gist-logs.rb +++ b/Library/Homebrew/cmd/gist-logs.rb @@ -1,5 +1,5 @@  require "formula" -require "cmd/config" +require "system_config"  require "net/http"  require "net/https"  require "stringio" @@ -12,7 +12,7 @@ module Homebrew      timestamp = build_time.strftime("%Y-%m-%d_%H-%M-%S")      s = StringIO.new -    Homebrew.dump_verbose_config(s) +    SystemConfig.dump_verbose_config s      # Dummy summary file, asciibetically first, to control display title of gist      files["# #{f.name} - #{timestamp}.txt"] = { :content => brief_build_info(f) }      files["00.config.out"] = { :content => s.string }  | 
