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 e2b96c4 commit 16f17faCopy full SHA for 16f17fa
lib/cocoapods-binary/Prebuild.rb
@@ -116,7 +116,10 @@ def prebuild_frameworks!
116
Pod::UI.puts "Prebuild frameworks (total #{targets.count})"
117
Pod::Prebuild.remove_build_dir(sandbox_path)
118
targets.each do |target|
119
- next unless target.should_build?
+ if !target.should_build?
120
+ UI.puts "Prebuilding #{target.label}"
121
+ next
122
+ end
123
124
output_path = sandbox.framework_folder_path_for_pod_name(target.name)
125
output_path.mkpath unless output_path.exist?
0 commit comments