fastlane-plugin-get_application_id 0.1.0 → 0.1.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: 3f2c7d8868f7b7d1665c1b4c1b9db5f117a350ed
|
|
4
|
+
data.tar.gz: '08915b122e5998b94d8a0ed804cd29fd04eac31f'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7a2711258a67bf67a4f5ab6e97f5b4285f7e9b381c160061b6e28870abcf4de662854faab25bb81520d38c5ceee58687a664200ce58b84c51e397588b9f7e10
|
|
7
|
+
data.tar.gz: 3445daf506be789d97dee6ad1ecbc8b389393de1c899bbecdf7b90c21367fac4fdc939c19e5070998c86730d94d2e42e87f505d57f765c4d497f598ef8a337d5
|
|
@@ -18,11 +18,11 @@ module Fastlane
|
|
|
18
18
|
end
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
-
if applicationId
|
|
21
|
+
if applicationId.nil?
|
|
22
22
|
UI.user_error!("Impossible to find the applicationId with the specified properties 😭")
|
|
23
23
|
else
|
|
24
24
|
# Store the applicationId in the shared hash
|
|
25
|
-
Actions.lane_context["APPLICATION_ID"]=applicationId
|
|
25
|
+
Actions.lane_context["APPLICATION_ID"]= applicationId
|
|
26
26
|
UI.success("👍 applicationId found: #{applicationId}")
|
|
27
27
|
end
|
|
28
28
|
|