fastlane-plugin-pgyer_cl 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7d301320bb3d3ee39be84155ec6c1549999784a1a42acb9bda8cadd7414c3c0
|
4
|
+
data.tar.gz: c8b305cd66392217fd9c5a2dd3ebe3731bb17c75e0db281e4dc31d6fde05d9b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6516aff7fe32e20f46073ad5cfeb042f228001220c12c7014569f25503264ceb84d000e476a85c268931cc04396798391bc57d5873bdf223d09be3ad659d6f4a
|
7
|
+
data.tar.gz: 9989b23a01fb253342ed67f08377bdf8be872a0acb4a44ad7d66835921b43e186d81d42c8795fafa053009fa8cba4e5670d8bac361e828f57b791c4f4df548ff
|
@@ -45,25 +45,25 @@ module Fastlane
|
|
45
45
|
|
46
46
|
UI.message "build_file: #{build_file}"
|
47
47
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
48
|
+
password = params[:password]
|
49
|
+
if password.nil?
|
50
|
+
password = ""
|
51
|
+
end
|
52
52
|
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
53
|
+
update_description = params[:update_description]
|
54
|
+
if update_description.nil?
|
55
|
+
update_description = appEnvironment
|
56
|
+
end
|
57
57
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
58
|
+
install_type = params[:install_type]
|
59
|
+
if install_type.nil?
|
60
|
+
install_type = "1"
|
61
|
+
end
|
62
62
|
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
63
|
+
channel_shortcut = params[:channel_shortcut]
|
64
|
+
if channel_shortcut.nil?
|
65
|
+
channel_shortcut = ""
|
66
|
+
end
|
67
67
|
|
68
68
|
pgyer_client = Faraday.new(nil, conn_options) do |c|
|
69
69
|
c.request :multipart
|