diff options
| author | Martin Afanasjew | 2016-04-06 06:35:28 +0200 |
|---|---|---|
| committer | Martin Afanasjew | 2016-04-06 06:35:28 +0200 |
| commit | 37b817ed394986808d2fdb595c272ede7a67f20d (patch) | |
| tree | ea9f7f750d8e0a90b7e1a26bde0339d57e2052a2 | |
| parent | a2c23dfec569c6e73d90cb20c7d4c26cced258d5 (diff) | |
| download | brew-37b817ed394986808d2fdb595c272ede7a67f20d.tar.bz2 | |
test-bot: fix access to relocated method
Fix bug introduced in a2c23dfec569c6e73d90cb20c7d4c26cced258d5. Moving
this method apparently made it inaccessible from `Homebrew::Step`.
| -rw-r--r-- | Library/Homebrew/cmd/test-bot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb index 8f2635282..c14461c62 100644 --- a/Library/Homebrew/cmd/test-bot.rb +++ b/Library/Homebrew/cmd/test-bot.rb @@ -199,7 +199,7 @@ module Homebrew unless output.empty? - @output = fix_encoding!(output) + @output = Homebrew.fix_encoding!(output) puts @output if (failed? || @puts_output_on_success) && !verbose File.write(log_file_path, @output) if ARGV.include? "--keep-logs" end |
