Utilize absolute paths of user-provided file paths (#7450)

Merge pull request 7450
This commit is contained in:
Ashwin Maroli 2019-03-15 21:40:48 +05:30 committed by jekyllbot
parent 475983537d
commit aea502745a
3 changed files with 6 additions and 5 deletions

View File

@ -54,8 +54,8 @@ module Jekyll
# Returns nothing.
def build(site, options)
t = Time.now
source = options["source"]
destination = options["destination"]
source = File.expand_path(options["source"])
destination = File.expand_path(options["destination"])
incremental = options["incremental"]
Jekyll.logger.info "Source:", source
Jekyll.logger.info "Destination:", destination

View File

@ -166,6 +166,7 @@ module Jekyll
#
# Returns this configuration, overridden by the values in the file
def read_config_file(file)
file = File.expand_path(file)
next_config = safe_load_file(file)
check_config_is_hash!(next_config, file)
Jekyll.logger.info "Configuration file:", file

View File

@ -190,7 +190,7 @@ class TestConfiguration < JekyllUnitTest
end
should "not raise an error on empty files" do
allow(SafeYAML).to receive(:load_file).with("empty.yml").and_return(false)
allow(SafeYAML).to receive(:load_file).with(File.expand_path("empty.yml")).and_return(false)
Jekyll.logger.log_level = :warn
@config.read_config_file("empty.yml")
Jekyll.logger.log_level = :info
@ -203,10 +203,10 @@ class TestConfiguration < JekyllUnitTest
end
should "continue to read config files if one is empty" do
allow(SafeYAML).to receive(:load_file).with("empty.yml").and_return(false)
allow(SafeYAML).to receive(:load_file).with(File.expand_path("empty.yml")).and_return(false)
allow(SafeYAML)
.to receive(:load_file)
.with("not_empty.yml")
.with(File.expand_path("not_empty.yml"))
.and_return("foo" => "bar", "include" => "", "exclude" => "")
Jekyll.logger.log_level = :warn
read_config = @config.read_config_files(["empty.yml", "not_empty.yml"])