diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-03-31 22:54:22 -0700 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-03-31 22:54:22 -0700 |
commit | eed1dfb243fb1fff9755eb73722e89a225160a1e (patch) | |
tree | c62483217bbf989689bcd854006376dbc9c95259 /bin/gitbook.js | |
parent | aefbfaf057da43f57afa1e8a34bdba1ddb2d0a73 (diff) | |
download | gitbook-eed1dfb243fb1fff9755eb73722e89a225160a1e.zip gitbook-eed1dfb243fb1fff9755eb73722e89a225160a1e.tar.gz gitbook-eed1dfb243fb1fff9755eb73722e89a225160a1e.tar.bz2 |
Only convert markdown file from the navigation
Diffstat (limited to 'bin/gitbook.js')
-rwxr-xr-x | bin/gitbook.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/gitbook.js b/bin/gitbook.js index ad251f2..6cb4798 100755 --- a/bin/gitbook.js +++ b/bin/gitbook.js @@ -50,9 +50,9 @@ prog ); }) .then(function(output) { - console.log(output); + console.log("Done!"); }, function(err) { - console.log(err.stack, err); + console.log(err.stack || err); }); }); |