Skip to content

Commit

Permalink
grunt.js testswarm task: shorten job name
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed May 7, 2012
1 parent 03e0029 commit 0add0b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt.js
Expand Up @@ -119,7 +119,7 @@ module.exports = function( grunt ) {
}, {
authUsername: "jquery",
authToken: grunt.file.readJSON( configFile ).jquery.authToken,
jobName: 'jQuery commit #<a href="https://github.com/jquery/jquery/commit/' + commit + '">' + commit + '</a>',
jobName: 'jQuery commit #<a href="https://github.com/jquery/jquery/commit/' + commit + '">' + commit.substr( 0, 10 ) + '</a>',
runMax: 4,
"runNames[]": tests,
"runUrls[]": testUrls,
Expand Down

0 comments on commit 0add0b3

Please sign in to comment.