Fixed bug where including includes from an include threw an exception.

This commit is contained in:
Christian Hellsten 2009-10-28 02:12:47 +02:00
parent 2f2e45bedf
commit 52342fe6e1
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ module Jekyll
'server' => false,
'server_port' => 4000,
'source' => '.',
'source' => Dir.pwd,
'destination' => File.join('.', '_site'),
'lsi' => false,

View File

@ -3,7 +3,7 @@ require File.dirname(__FILE__) + '/helper'
class TestConfiguration < Test::Unit::TestCase
context "loading configuration" do
setup do
@path = './_config.yml'
@path = File.join(Dir.pwd, '_config.yml')
end
should "fire warning with no _config.yml" do