Handle UTF-8-MAC filename on MacOS

This commit is contained in:
fukayatsu 2013-11-24 02:10:46 +09:00
parent 6b6e9b143d
commit 8e99d39570

View file

@ -205,8 +205,13 @@ module Middleman::Cli
output_path = render_to_file(resource) output_path = render_to_file(resource)
if should_clean? if should_clean? && output_path.exist?
@to_clean.delete(output_path.realpath) if output_path.exist? if RUBY_PLATFORM =~ /darwin/
# handle UTF-8-MAC filename on MacOS
@to_clean.delete_if { |path| path.to_s.encode('UTF-8', 'UTF-8-MAC') == output_path.realpath.to_s }
else
@to_clean.delete(output_path.realpath)
end
end end
end end