Commit 76d22d33 authored by Christopher Roach's avatar Christopher Roach

Fixing a bug where `downcase` was being called on the list of used file paths

parent fa7c9827
......@@ -166,7 +166,7 @@ module Pod
# @note The Paths are downcased to prevent issues. See #568.
#
def clean_paths
used = used_files.map(&:downcase)
used = used_files
files = Dir.glob(root + "**/*", [File::FNM_DOTMATCH, File::FNM_CASEFOLD])
files.reject! do |candidate|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment