fastlane 2.53.0 → 2.53.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 71b4b12b6dded7ad59a3827c7f8cbdb3b5c94a79
|
|
4
|
+
data.tar.gz: fed72d52260465e6f07b163c74beffa1acd0a966
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 820b87a70968b099728fac45f0b442f0298e47c9c52bfbe795a583788550a0c065abe1c51f684dd53642411bbfb8e9932c9462ab98a16b00d536fa8869a7d2a7
|
|
7
|
+
data.tar.gz: 948c703ac49bfada6ccc9bd8f513c8f5ad9222425b360090be00889fef964a5bf950d66506b79b029b6b3b8b024d74f9f4819670569113c13a185e92bfa584f3
|
|
@@ -22,8 +22,8 @@ module Fastlane
|
|
|
22
22
|
# If that's the case, we won't set the provisioning profiles
|
|
23
23
|
# see https://github.com/fastlane/fastlane/issues/9490
|
|
24
24
|
if values[:export_options].kind_of?(Hash)
|
|
25
|
-
match_mapping = Actions.lane_context[SharedValues::MATCH_PROVISIONING_PROFILE_MAPPING].dup
|
|
26
|
-
existing_mapping = values[:export_options][:provisioningProfiles].dup
|
|
25
|
+
match_mapping = (Actions.lane_context[SharedValues::MATCH_PROVISIONING_PROFILE_MAPPING] || {}).dup
|
|
26
|
+
existing_mapping = (values[:export_options][:provisioningProfiles] || {}).dup
|
|
27
27
|
|
|
28
28
|
# Be smart about how we merge those mappings in case there are conflicts
|
|
29
29
|
mapping_object = Gym::CodeSigningMapping.new
|
|
@@ -97,6 +97,10 @@ module Gym
|
|
|
97
97
|
end
|
|
98
98
|
end
|
|
99
99
|
|
|
100
|
+
def test_target?(build_settings)
|
|
101
|
+
return (!build_settings["TEST_TARGET_NAME"].nil? || !build_settings["TEST_HOST"].nil?)
|
|
102
|
+
end
|
|
103
|
+
|
|
100
104
|
def detect_project_profile_mapping
|
|
101
105
|
provisioning_profile_mapping = {}
|
|
102
106
|
|
|
@@ -108,6 +112,7 @@ module Gym
|
|
|
108
112
|
project.targets.each do |target|
|
|
109
113
|
target.build_configuration_list.build_configurations.each do |build_configuration|
|
|
110
114
|
current = build_configuration.build_settings
|
|
115
|
+
next if test_target?(current)
|
|
111
116
|
|
|
112
117
|
bundle_identifier = current["PRODUCT_BUNDLE_IDENTIFIER"]
|
|
113
118
|
provisioning_profile_specifier = current["PROVISIONING_PROFILE_SPECIFIER"]
|