Call File.expand_path on source so liquid can see _includes in subdirectories

This commit is contained in:
Alex Young
2009-11-30 17:27:57 +00:00
parent 2f2e45bedf
commit b1a055f10d

View File

@@ -11,7 +11,7 @@ module Jekyll
def initialize(config)
self.config = config.clone
self.source = config['source']
self.source = File.expand_path(config['source'])
self.dest = config['destination']
self.lsi = config['lsi']
self.pygments = config['pygments']