From 4ae5ea7dbeb754a5039775e66b62e3da0419a79b Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 26 Jun 2013 19:54:33 +0100 Subject: [PATCH] brew-test-bot: remove prefix from email subject. --- Library/Contributions/cmd/brew-test-bot.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Contributions/cmd/brew-test-bot.rb b/Library/Contributions/cmd/brew-test-bot.rb index 42baf82c63..b848da0eab 100755 --- a/Library/Contributions/cmd/brew-test-bot.rb +++ b/Library/Contributions/cmd/brew-test-bot.rb @@ -387,9 +387,9 @@ if ARGV.include? "--email" end if failed_steps.empty? - email_subject = 'brew test-bot: PASSED' + email_subject = 'PASSED' else - email_subject = "brew test-bot: FAILED: #{failed_steps.join ', '}" + email_subject = "#{failed_steps.join ', '}" end File.open "brew test-bot.email.txt", 'w' do |file|