pod-builder 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/pod_builder/command/build.rb +1 -1
- data/lib/pod_builder/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3d87c061e79af94ca1274b3d60765a3ba850c8a0d2b443fbd810dbb0585d0e0
|
|
4
|
+
data.tar.gz: d2db90c765d618eada490386fa07ffe412d69afefae36aef4f0a183e43019d71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a6664929a3eb5d564fe8e83345bddf9a746abda7c88adc8600e2fece2b4d3b9ce22d864ae4d363bd0e5fd5fa80bb0b083cbb648ec2cdb04c3f0c01c72a237aa
|
|
7
|
+
data.tar.gz: ff51be1741b388ba51cbb494203d5c1d6c9f593926ab1b5d0a86940f271dab9423c5f43b7866668007d7393a2d44c94a671205a1a61bfc5dfee2fa06b0b3a04f
|
|
@@ -129,7 +129,7 @@ module PodBuilder
|
|
|
129
129
|
build_settings = installer.analysis_result.targets.map { |t| t.user_project.root_object.targets.map { |u| u.build_configuration_list.build_configurations.map { |v| v.build_settings } } }.flatten
|
|
130
130
|
build_catalyst = build_settings.detect { |t| t["SUPPORTS_MACCATALYST"] == "YES" } != nil
|
|
131
131
|
|
|
132
|
-
puts "\nTo support Catalyst you should enable 'build_xcframeworks' in PodBuilder.json\n".red
|
|
132
|
+
puts "\nTo support Catalyst you should enable 'build_xcframeworks' in PodBuilder.json\n".red if build_catalyst && !Configuration.build_xcframeworks
|
|
133
133
|
|
|
134
134
|
return build_catalyst
|
|
135
135
|
end
|
data/lib/pod_builder/version.rb
CHANGED