Skip to content

Commit

Permalink
Merge pull request #20 from randallagordon/patch-template
Browse files Browse the repository at this point in the history
Adds template path as option
  • Loading branch information
mattmcmanus committed Jan 10, 2014
2 parents bc47274 + 7a9d9af commit bc721f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tasks/dox.js
Expand Up @@ -40,6 +40,11 @@ module.exports = function(grunt) {
_args.push('"' + _opts.title + '"');
}

if (_opts.template) {
_args.push('--template');
_args.push('"' + _opts.template + '"');
}

// Pass through ignore params if set
if (this.data.ignore) {
_args.push('--ignore');
Expand Down

0 comments on commit bc721f4

Please sign in to comment.