Changing help message to reflect what actually happens when running build and serve

This commit is contained in:
Brett Hardin 2013-02-20 09:37:19 -08:00
parent 151ec1a487
commit 03e2e8d063
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ global_option '--layouts', 'Layouts directory (defaults to ./_layouts)'
command :build do |c|
c.syntax = 'jekyll build [options]'
c.description = 'Build your site with the option of auto-renegeration'
c.description = 'Build your site'
c.option '-w', '--watch', 'Watch for changes and rebuild'
c.option '--lsi', 'Use LSI for improved related posts'
@ -33,7 +33,7 @@ end
command :serve do |c|
c.syntax = 'jekyll serve [options]'
c.description = 'Serve your site locally with the option of auto-regeneration'
c.description = 'Serve your site locally'
c.option '-w', '--watch', 'Watch for changes and rebuild'
c.option '--lsi', 'Use LSI for improved related posts'