ETLane 0.1.43 → 0.1.44
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Lanes/CommonFastfile +2 -6
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 907c6a57950ddf96943e050fdea13118fec30a2db4ce1d7b9e9f7013c3f11944
|
4
|
+
data.tar.gz: 8ea8490468e0a324076e15fb0b356299ffc181cde5ba550f8a088b9c351420b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59b302c1944211fbd57adb2356afb14df1370798b6e4c65f8c818be28f4d5888e4a6e69b12d8a41b914cdff7b6ddcbd7340a75b398511cf2d789390244a9ea44
|
7
|
+
data.tar.gz: 7d96277b6e3d7102786b9916bc7b4213e0c5cd02e5caddbe2b72397ec775f339fdbcb47239072b5e99f0e0b4e4a908bb1768a17ea08bf751ce0ade8e4d58e95e
|
data/Lanes/CommonFastfile
CHANGED
@@ -10,7 +10,6 @@ platform :ios do
|
|
10
10
|
|
11
11
|
build_folder = File.join(Dir.pwd, "..", "build")
|
12
12
|
last_commit_path = File.join(Dir.pwd, "last_commit")
|
13
|
-
scripts_dir = File.join(Dir.pwd, "../Pods/ETLane/Scripts")
|
14
13
|
|
15
14
|
desc "Push a new beta build to TestFlight"
|
16
15
|
lane :beta do |options|
|
@@ -120,11 +119,8 @@ platform :ios do
|
|
120
119
|
if download_screenshots
|
121
120
|
FileUtils.rm_rf(screenshots_path)
|
122
121
|
end
|
123
|
-
|
124
|
-
|
125
|
-
try_repo_update_on_error: true,
|
126
|
-
use_bundle_exec: true,
|
127
|
-
)
|
122
|
+
lane_path = %x( bundle info ETLane --path )
|
123
|
+
scripts_dir = File.join(lane_path.strip, "Scripts")
|
128
124
|
|
129
125
|
Dir.chdir(scripts_dir) do
|
130
126
|
sh(
|