Skip to content

Commit

Permalink
fix broken license string
Browse files Browse the repository at this point in the history
fix #2865
  • Loading branch information
seven-phases-max committed Apr 9, 2016
1 parent ff94626 commit e257ebb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@ module.exports = function (grunt) {
build: grunt.file.readYAML('build/build.yml'),
pkg: grunt.file.readJSON('package.json'),
meta: {
license: '<%= _.pluck(pkg.licenses, "type").join(", ") %>',
copyright: 'Copyright (c) 2009-<%= grunt.template.today("yyyy") %>',
banner: '/*!\n' +
' * Less - <%= pkg.description %> v<%= pkg.version %>\n' +
' * http://lesscss.org\n' +
' *\n' +
' * <%= meta.copyright %>, <%= pkg.author.name %> <<%= pkg.author.email %>>\n' +
' * Licensed under the <%= meta.license %> License.\n' +
' * Licensed under the <%= pkg.license %> License.\n' +
' *\n' +
' */\n\n' +
' /**' +
' * @license <%= meta.license %>\n' +
' * @license <%= pkg.license %>\n' +
' */\n\n'
},

Expand Down

0 comments on commit e257ebb

Please sign in to comment.