fastlane-plugin-test_center 3.11.2 → 3.11.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: d8ca5a9222720b8b5159174407b28d8675636e19c3cd9ee1e4950f37069acb50
|
|
4
|
+
data.tar.gz: 290ebef85ce82943353cbf4ca7593b431a2ab903c8dc552932705c61c3b11771
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 162eab51a51e48d16a0dc84c72de87c310fbecfd75e61ddb6a531dc3d3ee8047f17950a826e60f6cfc25d81f2b586132716d5d470c31f8308a72d4efaae3c145
|
|
7
|
+
data.tar.gz: 5070579e0c6b38115908238c3a5b6335edf3791c7cc44e62587138304199b439c875ebf2a3fb97cb798e81eb3cfaffd3a990215d8cf2b48d3fbfdb5c55bafc37
|
|
@@ -224,8 +224,10 @@ module TestCenter
|
|
|
224
224
|
src_xcresult_bundlepath = File.join(testable_output_dir, xcresult_bundlename)
|
|
225
225
|
dst_xcresult_bundlepath = File.join(final_output_dir, xcresult_bundlename)
|
|
226
226
|
|
|
227
|
-
#
|
|
228
|
-
return
|
|
227
|
+
# if there is no destination bundle to merge to, skip it as any source bundle will be copied when complete.
|
|
228
|
+
return if !File.exist?(dst_xcresult_bundlepath)
|
|
229
|
+
# if there is no source bundle to merge, skip it as there is nothing to merge.
|
|
230
|
+
return if !File.exist?(src_xcresult_bundlepath)
|
|
229
231
|
|
|
230
232
|
config = FastlaneCore::Configuration.create(
|
|
231
233
|
Fastlane::Actions::CollateXcresultsAction.available_options,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-test_center
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.11.
|
|
4
|
+
version: 3.11.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lyndsey Ferguson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|