Commit 672e2804 authored by Boris Bügling's avatar Boris Bügling

Use `realpath` for development pods file refs.

parent 313ffd35
...@@ -182,10 +182,10 @@ module Pod ...@@ -182,10 +182,10 @@ module Pod
file_path_name = Pathname.new(absolute_path) file_path_name = Pathname.new(absolute_path)
group = group_for_path_in_group(file_path_name, group, reflect_file_system_structure) group = group_for_path_in_group(file_path_name, group, reflect_file_system_structure)
if ref = reference_for_path(absolute_path) if ref = reference_for_path(absolute_path.realpath)
ref ref
else else
ref = group.new_file(absolute_path) ref = group.new_file(absolute_path.realpath)
@refs_by_absolute_path[absolute_path.to_s] = ref @refs_by_absolute_path[absolute_path.to_s] = ref
end end
end end
......
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