Don't read a config file if the filename is empty.

This commit is contained in:
Parker Moore 2016-04-04 13:13:23 -07:00 committed by Pat Hawks
parent 04d4473119
commit 6eaa8e90f8
1 changed files with 1 additions and 0 deletions

View File

@ -169,6 +169,7 @@ module Jekyll
begin
files.each do |config_file|
next if config_file.nil? or config_file.empty?
new_config = read_config_file(config_file)
configuration = Utils.deep_merge_hashes(configuration, new_config)
end