Skip to content

Commit 16f17fa

Browse files
committed
add log for skipped prebuilding pod
1 parent e2b96c4 commit 16f17fa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/cocoapods-binary/Prebuild.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,10 @@ def prebuild_frameworks!
116116
Pod::UI.puts "Prebuild frameworks (total #{targets.count})"
117117
Pod::Prebuild.remove_build_dir(sandbox_path)
118118
targets.each do |target|
119-
next unless target.should_build?
119+
if !target.should_build?
120+
UI.puts "Prebuilding #{target.label}"
121+
next
122+
end
120123

121124
output_path = sandbox.framework_folder_path_for_pod_name(target.name)
122125
output_path.mkpath unless output_path.exist?

0 commit comments

Comments
 (0)