Gruntfile: Remove project prefix from TestSwarm job name, close gh-1387

This commit is contained in:
Timo Tijhof 2013-10-02 14:58:15 +02:00 committed by Dave Methvin
parent b561f5ab0a
commit d1f247daf8

View File

@ -12,10 +12,10 @@ module.exports = function( grunt ) {
tests = grunt.config([ this.name, "tests" ]);
if ( pull ) {
jobName = "jQuery pull <a href='https://github.com/jquery/jquery/pull/" +
jobName = "Pull <a href='https://github.com/jquery/jquery/pull/" +
pull[ 1 ] + "'>#" + pull[ 1 ] + "</a>";
} else {
jobName = "jQuery commit #<a href='https://github.com/jquery/jquery/commit/" +
jobName = "Commit <a href='https://github.com/jquery/jquery/commit/" +
commit + "'>" + commit.substr( 0, 10 ) + "</a>";
}