Skip to content

Commit

Permalink
Merge pull request #7 from niyazpk/patch-2
Browse files Browse the repository at this point in the history
Fix for an error in windows.
  • Loading branch information
krampstudio committed Dec 31, 2012
2 parents 8a095df + ffac137 commit 6841072
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 @@ -46,7 +46,7 @@ module.exports = function jsDocTask(grunt) {
* @return {String} command the command ready to be executed
*/
var buildCmd = function(bin, sources, destination){
var cmd = bin + ' -d ' + destination +' ' + sources.join(' ');
var cmd = '"' + bin + '"' + ' -d ' + destination +' ' + sources.join(' ');
grunt.log.debug(cmd);
return cmd;
};
Expand Down

0 comments on commit 6841072

Please sign in to comment.