diff options
author | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-10-15 21:20:10 +0200 |
---|---|---|
committer | Aaron O'Mullan <aaron.omullan@friendco.de> | 2014-10-15 21:20:10 +0200 |
commit | 52e83618467a238f6b20f5fb77f6f6a2e1450c8c (patch) | |
tree | 96b43d8396fedea81409677f1e10698a0b36265c /lib/generate/index.js | |
parent | 49e3bbc3d6e9e128df721494e9a10eaf15b7ddc8 (diff) | |
download | gitbook-52e83618467a238f6b20f5fb77f6f6a2e1450c8c.zip gitbook-52e83618467a238f6b20f5fb77f6f6a2e1450c8c.tar.gz gitbook-52e83618467a238f6b20f5fb77f6f6a2e1450c8c.tar.bz2 |
Add include support, with variables and the whole shebang
Fixes #462
Diffstat (limited to 'lib/generate/index.js')
-rw-r--r-- | lib/generate/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/generate/index.js b/lib/generate/index.js index 4fc78a7..2118c46 100644 --- a/lib/generate/index.js +++ b/lib/generate/index.js @@ -40,7 +40,7 @@ var loadGenerator = function(options) { .then(function() { var generator = new generators[options.generator](options); - return generator.loadPlugins() + return generator.load() .then(_.constant(generator)); }); }; |