summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2014-09-17 14:16:04 +0200
committerSamy Pessé <samypesse@gmail.com>2014-09-17 14:16:04 +0200
commitf83874a9ca5877c9b5417e1603df9c9d3ffe19f2 (patch)
tree55e745099767b6dca6aab3045a77f017d7191fbe
parent1968bb79c28678a03ed092ce5f9a8c7b6a80d3e5 (diff)
downloadgitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.zip
gitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.tar.gz
gitbook-f83874a9ca5877c9b5417e1603df9c9d3ffe19f2.tar.bz2
Fix correct folder for assets
-rw-r--r--lib/generate/site/index.js2
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
});
})
);