diff options
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 e3d8a36..773e566 100755 --- a/bin/gitbook.js +++ b/bin/gitbook.js @@ -21,8 +21,8 @@ var buildCommand = function(command) { return command .option('-o, --output <directory>', 'Path to output directory, defaults to ./_book') .option('-f, --format <name>', 'Change generation format, defaults to site, availables are: '+_.keys(generators).join(", ")) - .option('-t, --title <name>', 'Name of the book to generate, defaults to repo name') - .option('-i, --intro <intro>', 'Description of the book to generate') + .option('-t, --title <name>', 'Name of the book to generate, default is extracted from readme') + .option('-i, --intro <intro>', 'Description of the book to generate, default is extracted from readme') .option('-g, --github <repo_path>', 'ID of github repo like : username/repo') .option('--githubHost <url>', 'The url of the github host (defaults to https://github.com/') .option('--theme <path>', 'Path to theme directory'); |