From e19110954960ae127bf5a4e61807bc6683ae90f4 Mon Sep 17 00:00:00 2001 From: lonnen Date: Tue, 9 Feb 2016 23:46:45 -0800 Subject: [PATCH] add consistency to the deprecation message --- lib/jekyll/deprecator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll/deprecator.rb b/lib/jekyll/deprecator.rb index d4ea3c88..21449400 100644 --- a/lib/jekyll/deprecator.rb +++ b/lib/jekyll/deprecator.rb @@ -22,7 +22,7 @@ module Jekyll def no_subcommand(args) if args.size > 0 && args.first =~ /^--/ && !%w(--help --version).include?(args.first) - deprecation_message "Jekyll now uses subcommands instead of just switches. Run `jekyll --help` to find out more." + deprecation_message "Jekyll now uses subcommands instead of just switches. Run `jekyll help` to find out more." abort end end