diff options
| author | Mike McQuaid | 2013-10-08 12:12:48 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2013-10-08 12:13:06 +0100 |
| commit | 5e26584736b310c365d4b9cce99d0dced9a2d309 (patch) | |
| tree | 8b9aedf930431ed2fce311b391674f99971eea9f /Library | |
| parent | 26018b7920bff5c9a3a82356961b95097cbd40b1 (diff) | |
| download | homebrew-5e26584736b310c365d4b9cce99d0dced9a2d309.tar.bz2 | |
brew-test-bot: cleanup junit file with iconv.
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-test-bot.rb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index f035eddef..0488bc24f 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -397,10 +397,15 @@ end if ARGV.include? "--junit" xml_erb = HOMEBREW_CONTRIBUTED_CMDS + "brew-test-bot.xml.erb" erb = ERB.new IO.read xml_erb - 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/, '') + 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/, '') 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" |
