fastlane-plugin-match_keystore 0.1.2 → 0.1.3
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dc39c27ae6c902a6fcd405d5eef892687e663bb85cccb0fbbeb10dfb69b00751
|
|
4
|
+
data.tar.gz: b6aebe60f441bfc603aac48563763fc18ec57f8079276780ae871795d833a67f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7582d8c4cc25d65d84b9b77db1bd18eacb4e434733456e1307f9cff59bb55cea15112045f8d6664968a2ec704da32c1c132c563713baf06946b45f07dd7a33a9
|
|
7
|
+
data.tar.gz: 6f978721abbfb8110c1ed311dcd366602baba4fac92ada9d1406682201d99a40909cd4400b48c621e32f680b43be73a02f42b0c5770432d522f6019e01558585
|
|
@@ -93,11 +93,11 @@ module Fastlane
|
|
|
93
93
|
end
|
|
94
94
|
|
|
95
95
|
def self.resolve_apk_path(apk_path)
|
|
96
|
+
|
|
96
97
|
if !apk_path.to_s.end_with?(".apk")
|
|
97
98
|
|
|
98
99
|
if !File.directory?(apk_path)
|
|
99
100
|
apk_path = File.join(Dir.pwd, apk_path)
|
|
100
|
-
puts apk_path
|
|
101
101
|
end
|
|
102
102
|
|
|
103
103
|
pattern = File.join(apk_path, '*.apk')
|
|
@@ -110,6 +110,12 @@ module Fastlane
|
|
|
110
110
|
end
|
|
111
111
|
end
|
|
112
112
|
|
|
113
|
+
else
|
|
114
|
+
|
|
115
|
+
if !File.file?(apk_path)
|
|
116
|
+
apk_path = File.join(Dir.pwd, apk_path)
|
|
117
|
+
end
|
|
118
|
+
|
|
113
119
|
end
|
|
114
120
|
|
|
115
121
|
apk_path
|