We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f17fa commit d6c9c13Copy full SHA for d6c9c13
lib/cocoapods-binary/Prebuild.rb
@@ -98,7 +98,9 @@ def prebuild_frameworks!
98
sum
99
end
100
targets = root_names_to_update.map do |root_name|
101
- name_to_target_hash[root_name]
+ t = name_to_target_hash[root_name]
102
+ raise "There's no target named (#{root_name}) in Pod.xcodeproj.\n #{name_to_target_hash.keys}" if t.nil?
103
+ t
104
end || []
105
106
# add the dendencies
0 commit comments