diff options
Diffstat (limited to 'lib/generate/page/index.js')
-rw-r--r-- | lib/generate/page/index.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/generate/page/index.js b/lib/generate/page/index.js index a489066..111bb1e 100644 --- a/lib/generate/page/index.js +++ b/lib/generate/page/index.js @@ -92,6 +92,14 @@ Generator.prototype.finish = function() { output, html ); + }) + + // + .then(function() { + return fs.copy( + path.join(that.options.theme, "assets"), + path.join(that.options.output, "gitbook") + ); }); }; |