fastlane-plugin-stream_actions 0.3.44 → 0.3.45
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: 43d1174ea2669d83e8d04e8197e33e44d0150994ac7247871d141a3514f7102b
|
4
|
+
data.tar.gz: 3f11607e25d9f24379a290880b916bf0dbfa022847be948ae5a5b5157536b5d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e67f7aedfd9e3f65f5fd796eac6a53071aaf46c6faa729e4ff05896b71a8641ae954f87f00cff30dfc7e11c150f7a63621a6feee49eb85f89b5b9ac5001d01fd
|
7
|
+
data.tar.gz: 907355f2f2568ac15646fceaa90c6ea30f4b86bb25abad8afbbe3f2df88d02b1e3a255e4abbbbc3722ca8ced874c9250e3a373b4ebcac11e1f5f46c55c719455
|
@@ -11,7 +11,7 @@ module Fastlane
|
|
11
11
|
if simulators.empty?
|
12
12
|
Dir.chdir('..') do
|
13
13
|
sh("echo 'iOS #{params[:version]} Simulator' | ipsw download xcode --sim") if Dir['*.dmg'].first.nil?
|
14
|
-
sh("
|
14
|
+
sh("sh #{params[:custom_script]} #{Dir['*.dmg'].first}")
|
15
15
|
UI.success("iOS #{params[:version]} Runtime successfuly installed")
|
16
16
|
end
|
17
17
|
else
|
@@ -32,6 +32,10 @@ module Fastlane
|
|
32
32
|
FastlaneCore::ConfigItem.new(
|
33
33
|
key: :version,
|
34
34
|
description: 'iOS Version'
|
35
|
+
),
|
36
|
+
FastlaneCore::ConfigItem.new(
|
37
|
+
key: :custom_script,
|
38
|
+
description: 'Path to custom script to install the runtime'
|
35
39
|
)
|
36
40
|
]
|
37
41
|
end
|