Skip to content

Commit

Permalink
Fix jsdoc error
Browse files Browse the repository at this point in the history
  • Loading branch information
samme committed Mar 6, 2020
1 parent 1f36fbb commit c72460a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/docstrap-master/template/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ exports.publish = function (taffyData, opts, tutorials) {
staticFiles.forEach(function (fileName) {
var toDir = fs.toDir(fileName.replace(fromDir, outdir));
fs.mkPath(toDir);
fs.copyFileSync(fileName, path.join(toDir, path.basename(fileName)));
fs.copyFileSync(fileName, toDir, path.basename(fileName));
});

// copy user-specified static files to outdir
Expand Down

0 comments on commit c72460a

Please sign in to comment.