diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-02-17 12:02:58 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-02-17 12:02:58 +0100 |
commit | e2c21051aa6a42f13208297d08688b99d45ddb27 (patch) | |
tree | 298db652d074de5aee362da73f3878a58f727676 /lib/output | |
parent | 7c575e1b43d75a22bad035a3ce62110572dff1c9 (diff) | |
download | gitbook-e2c21051aa6a42f13208297d08688b99d45ddb27.zip gitbook-e2c21051aa6a42f13208297d08688b99d45ddb27.tar.gz gitbook-e2c21051aa6a42f13208297d08688b99d45ddb27.tar.bz2 |
Add method install to plugins manager
Diffstat (limited to 'lib/output')
-rw-r--r-- | lib/output/base.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/output/base.js b/lib/output/base.js index 2b9cdc7..02a69b1 100644 --- a/lib/output/base.js +++ b/lib/output/base.js @@ -50,11 +50,7 @@ Output.prototype.generate = function() { // Load all plugins .then(function() { - that.log.info.ln('Loading and preparing plugins'); - - var plugins = _.pluck(that.book.config.get('plugins'), 'name'); - - return that.plugins.load(plugins); + return that.plugins.loadAll(); }) // Initialize the generation |