Call File.expand_path on source so liquid can see _includes in subdirectories
This commit is contained in:
parent
2f2e45bedf
commit
b1a055f10d
|
@ -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']
|
||||
|
|
Loading…
Reference in New Issue