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 988a09f commit d3f529dCopy full SHA for d3f529d
lib/cocoapods-binary/helper/podfile_options.rb
@@ -112,7 +112,8 @@ def validate_every_pod_only_have_one_form
112
end
113
114
multi_targets_pods = multi_targets_pods.reject do |name, targets|
115
- targets.all? {|t| self.prebuild_pod_targets.include? t}
+ contained = targets.map{|t| self.prebuild_pod_targets.include? t }
116
+ contained.uniq.count == 1 # all equal
117
118
119
return if multi_targets_pods.empty?
0 commit comments