From bcf91bda22fbbf681f085a94805e8715c03968d1 Mon Sep 17 00:00:00 2001 From: Jack Danger Canty Date: Wed, 19 Nov 2008 21:52:49 -0800 Subject: [PATCH] updating the binary with an extremely basic USAGE note --- bin/jekyll | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/jekyll b/bin/jekyll index 48611b95..9d9a05dc 100755 --- a/bin/jekyll +++ b/bin/jekyll @@ -4,4 +4,8 @@ $:.unshift File.join(File.dirname(__FILE__), *%w[.. lib]) require 'jekyll' -Jekyll.process(ARGV[0], ARGV[1]) \ No newline at end of file +if ARGV[0] && ARGV[1] + Jekyll.process(ARGV[0], ARGV[1]) +else + puts "USAGE: jekyll /path/to/raw/site /path/to/generated/site" +end \ No newline at end of file