From 03e2e8d063a66400078e9e3ce0113eed6d2685ca Mon Sep 17 00:00:00 2001 From: Brett Hardin Date: Wed, 20 Feb 2013 09:37:19 -0800 Subject: [PATCH] Changing help message to reflect what actually happens when running build and serve --- bin/jekyll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/jekyll b/bin/jekyll index a5ca0f52..35e35d01 100755 --- a/bin/jekyll +++ b/bin/jekyll @@ -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'