We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc0cf3 commit 85aa760Copy full SHA for 85aa760
lib/cocoapods-binary/Prebuild.rb
@@ -97,7 +97,8 @@ def prebuild_frameworks!
97
targets = root_names_to_update.map do |pod_name|
98
tars = Pod.fast_get_targets_for_pod_name(pod_name, self.pod_targets, cache)
99
if tars.nil? || tars.empty?
100
- raise "There's no target named (#{pod_name}) in Pod.xcodeproj.\n #{self.pod_targets.map(&:name)}" if t.nil?
+ # https://github.com/leavez/cocoapods-binary/pull/148
101
+ raise "There's no target named (#{pod_name}) in Pod.xcodeproj.\n #{self.pod_targets.map(&:name)}" if tars.nil?
102
end
103
tars
104
end.flatten
0 commit comments