Skip to content

Commit 7e78166

Browse files
authored
Use base_configuration_reference.real_path rather than path (#4118)
real_path has the correct value after a pod deintegrate, while path has some nearly correct value. No idea why these are different.
1 parent f932b26 commit 7e78166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sync_project.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ def sync_xcconfig(target_def, target)
546546
next
547547
end
548548

549-
path = PODFILE_DIR.join(config.base_configuration_reference.path)
549+
path = PODFILE_DIR.join(config.base_configuration_reference.real_path)
550550
if !File.file?(path)
551551
puts "Skipping #{target.name} (#{config.name}); missing xcconfig"
552552
next

0 commit comments

Comments
 (0)