aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-test-bot.rb11
1 files changed, 3 insertions, 8 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb
index 0488bc24f..f035eddef 100755
--- a/Library/Contributions/cmd/brew-test-bot.rb
+++ b/Library/Contributions/cmd/brew-test-bot.rb
@@ -397,15 +397,10 @@ end
if ARGV.include? "--junit"
xml_erb = HOMEBREW_CONTRIBUTED_CMDS + "brew-test-bot.xml.erb"
erb = ERB.new IO.read xml_erb
- output_xml = 'brew-test-bot.xml'
- input_xml = "#{output_xml}.in"
- open("brew-test-bot.xml.in", "w") do |xml|
- # Remove empty lines from ERB result.
- xml.write erb.result(binding).gsub(/^\s*$\n/, '')
+ open("brew-test-bot.xml", "w") do |xml|
+ # Remove empty lines and null characters from ERB result.
+ xml.write erb.result(binding).gsub(/^\s*$\n|\000/, '')
end
- # Remove bad characters from ERB result.
- `iconv -c -s -f utf8 -t utf8 #{input_xml} > #{output_xml}`
- FileUtils.rm input_xml
end
if ARGV.include? "--email"