lib/cocoapods-binary-cache/diagnosis/integration.rb in cocoapods-binary-cache-0.1.7 vs lib/cocoapods-binary-cache/diagnosis/integration.rb in cocoapods-binary-cache-0.1.8
- old
+ new
@@ -13,9 +13,11 @@
framework_path = \
@standard_sandbox.pod_dir(name) + \
PodPrebuild.config.prebuilt_path(path: "#{module_name}.framework")
framework_path.exist?
end
- Pod::UI.puts "🚩 Unintegrated frameworks: #{unintegrated}".yellow unless unintegrated.empty?
+ return [] if unintegrated.empty?
+
+ [[:error, "Unintegrated frameworks: #{unintegrated}"]]
end
end
end