Skip to content

Commit

Permalink
Fix #136 to support old dest syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
krampstudio committed May 29, 2015
1 parent 20470cb commit e85752a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/jsdoc-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module.exports = function jsDocTask(grunt) {

if (!options.destination) {
// Support for old syntax where destination was provided through 'dest' key
params.destination = this.files[0].dest || 'doc';
options.destination = this.files[0].dest || 'doc';
}

//legacy configs
Expand Down

0 comments on commit e85752a

Please sign in to comment.