aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2015-04-30 19:42:54 -0400
committerJack Nagel2015-04-30 19:42:54 -0400
commitc7ca28a161a202059f80f85faea7ffa90763450e (patch)
tree84aba0081e3800a9d86c1a8df0981e22c9f24a47 /Library/Homebrew/cmd
parente023d869a2a3b05c0d7a09ddb10975f322896bdb (diff)
downloadbrew-c7ca28a161a202059f80f85faea7ffa90763450e.tar.bz2
Fix encoding of output string
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 31e4bc5be..94fac3337 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -142,6 +142,7 @@ module Homebrew
puts_result
if has_output?
+ @output = fix_encoding(@output)
puts @output if (failed? or @puts_output_on_success) && !verbose
File.write(log_file_path, @output) if ARGV.include? "--keep-logs"
end