From 4b39c446642618e70d96c0ef3ee4b343b2fadd1c Mon Sep 17 00:00:00 2001 From: mreid Date: Tue, 24 Feb 2009 18:28:01 +1100 Subject: [PATCH] configure now sets the source and dest fields so the Liquid include filter works again --- lib/jekyll.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index ce8a717a..2721d6b4 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -60,6 +60,8 @@ module Jekyll # Initializes some global Jekyll parameters def self.configure(options) # Interpret the simple options and configure Jekyll appropriately + Jekyll.source = options['source'] + Jekyll.dest = options['destination'] Jekyll.lsi = options['lsi'] Jekyll.pygments = options['pygments'] Jekyll.permalink_style = options['permalink'].to_sym