diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-02-03 10:52:39 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-02-03 10:52:39 +0100 |
commit | 1eea994e731331118dcbbf6c0ed576c358b0df0a (patch) | |
tree | a7fd51fb544627e9293e129898601e4479509e44 /lib | |
parent | 8a597ff3f18aa1dfa755ff21115e082e33374c9c (diff) | |
download | gitbook-1eea994e731331118dcbbf6c0ed576c358b0df0a.zip gitbook-1eea994e731331118dcbbf6c0ed576c358b0df0a.tar.gz gitbook-1eea994e731331118dcbbf6c0ed576c358b0df0a.tar.bz2 |
Fix init command
Diffstat (limited to 'lib')
-rw-r--r-- | lib/book.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/book.js b/lib/book.js index 5099291..d907740 100644 --- a/lib/book.js +++ b/lib/book.js @@ -712,10 +712,10 @@ Book.init = function(root) { }, []); }; - book.log.infoLn("init book at", root); + book.log.info.ln("init book at", root); return fs.mkdirp(root) .then(function() { - book.log.infoLn("detect structure from SUMMARY (if it exists)"); + book.log.info.ln("detect structure from SUMMARY (if it exists)"); return book.parseSummary(); }) .fail(function() { @@ -748,7 +748,7 @@ Book.init = function(root) { return fs.exists(absolutePath) .then(function(exists) { - book.log.infoLn("create", chapter.path); + book.log.info.ln("create", chapter.path); if(exists) return; return fs.mkdirp(path.dirname(absolutePath)) @@ -759,7 +759,7 @@ Book.init = function(root) { })); }) .then(function() { - book.log.infoLn("initialization is finished"); + book.log.info.ln("initialization is finished"); }); }; |