diff options
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 75f404f5f..fcd8609c6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -390,7 +390,9 @@ grunt.registerTask( "update-authors", function() { } authors = authors.map(function( author ) { - if ( author.match( /^Jacek Jędrzejewski </ ) ) { + if ( author.match( /^Dan Strohl </ ) ) { + return "Dan Strohl"; + } else if ( author.match( /^Jacek Jędrzejewski </ ) ) { return "Jacek Jędrzejewski (http://jacek.jedrzejewski.name)"; } else if ( author.match( /^Pawel Maruszczyk </ ) ) { return "Pawel Maruszczyk (http://hrabstwo.net)"; |