aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMartin Afanasjew2016-04-06 06:35:28 +0200
committerMartin Afanasjew2016-04-06 06:35:28 +0200
commit37b817ed394986808d2fdb595c272ede7a67f20d (patch)
treeea9f7f750d8e0a90b7e1a26bde0339d57e2052a2 /Library
parenta2c23dfec569c6e73d90cb20c7d4c26cced258d5 (diff)
downloadbrew-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`.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb2
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