diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-09-17 14:16:04 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-09-17 14:16:04 +0200 |
commit | f83874a9ca5877c9b5417e1603df9c9d3ffe19f2 (patch) | |
tree | 55e745099767b6dca6aab3045a77f017d7191fbe | |
parent | 1968bb79c28678a03ed092ce5f9a8c7b6a80d3e5 (diff) | |
download | gitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.zip gitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.tar.gz gitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.tar.bz2 |
Fix correct folder for assets
-rw-r--r-- | lib/generate/site/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/generate/site/index.js b/lib/generate/site/index.js index 549ad38..a694f39 100644 --- a/lib/generate/site/index.js +++ b/lib/generate/site/index.js @@ -246,7 +246,7 @@ Generator.prototype.copyAssets = function() { _.map(that.plugins.list, function(plugin) { var pluginAssets = path.join(that.options.output, "gitbook/plugins/", plugin.name); return plugin.copyAssets(pluginAssets, { - base: this.pluginAssetsBase + base: that.pluginAssetsBase }); }) ); |