Skip to content

Commit

Permalink
Include tree name when yelling at someone for build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
robarnold committed Jun 1, 2011
1 parent b33f939 commit 24c1a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ exports.failure = function failure(cb, event)
});
shorturl(logurl, 'goo.gl', function (shorturl) {
committers.lookup(event.pusher, function (name) {
cb("{0}: Did you try compiling before pushing? There's a build failure on {1}, see {2} for details", name, event.platform, shorturl);
cb("{0}: Did you try compiling before pushing to {3}? There's a build failure on {1}, see {2} for details", name, event.platform, shorturl, event.tree);
}, function (name) {
if (name === undefined) {
cb("Who the hell is {0} and why did they break {1}? See {2} for details.", event.pusher, event.tree, shorturl);
Expand Down

0 comments on commit 24c1a54

Please sign in to comment.