mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
don't globally replace build in output files, just the first duplicate directory
This commit is contained in:
parent
796ff20939
commit
baef07f7cf
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ module Middleman
|
|||
|
||||
create_file destination, nil, config do
|
||||
# The default render just requests the page over Rack and writes the response
|
||||
request_path = destination.gsub(Middleman::Server.build_dir, "")
|
||||
request_path = destination.sub(/^#{Middleman::Server.build_dir}/, "")
|
||||
@@rack_test.get(request_path)
|
||||
@@rack_test.last_response.body
|
||||
end
|
||||
|
@ -87,7 +87,7 @@ module Middleman
|
|||
|
||||
protected
|
||||
def handle_directory(lookup)
|
||||
lookup = File.join(lookup, '{*,.[a-z]*}')
|
||||
lookup = File.join(lookup, '*')
|
||||
|
||||
Dir[lookup].sort.each do |file_source|
|
||||
if File.directory?(file_source)
|
||||
|
|
Loading…
Reference in a new issue