Attempt a fix for #837

This commit is contained in:
Ben Hollis 2013-04-30 19:52:33 -07:00
parent 53c4413cc3
commit 513e6dc2ad

View file

@ -68,6 +68,9 @@ module Middleman
# (e.g., if the resource is named 'gallery.html' and a path exists named 'gallery/', this would return true)
# @return [Boolean]
def eponymous_directory?
if !path.end_with?("/#{app.index_file}") && destination_path.end_with?("/#{app.index_file}")
return true
end
full_path = File.join(app.source_dir, eponymous_directory_path)
!!(File.exists?(full_path) && File.directory?(full_path))
end