fastlane-plugin-automated_test_emulator_run_mik 1.6.8 → 1.6.9

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
  SHA1:
3
- metadata.gz: c524e9a89eea5e69dbd2f2a43338aa21717ed5a5
4
- data.tar.gz: 1c4d728197a2a03a16f85e6efed4025d4654f639
3
+ metadata.gz: 8c7d57f68209356d7befef87a0ba44945f40baf7
4
+ data.tar.gz: 39ed41d5c53452b3d7131198c4f78f4229be02de
5
5
  SHA512:
6
- metadata.gz: 19c800e4181de5bcf3f9ce12735dfd107760fc196fd1ac20699bcc0d4719e93c1f40649dda4e18fdd285a77e698e97008edf4711cdf68b5fc55510bfa22fe11f
7
- data.tar.gz: e313c4c8abb3ebea9d21a5958591d4811b49755ee73668d43d91bbaebfeeeddcb46907f1e983c72093ba2fb09fde5e5dfe2931a60a84f9d2d40e57ac8684033a
6
+ metadata.gz: 1e503b99b3b5aeb436140e1b6a7946c51f5a864711abda6f020e866dcad240ddcaee44cb1254e5ae32c3040d5a1ce0f7044188594cbd2e1dacf85fc15f63f6d0
7
+ data.tar.gz: 76decd5a83d2a3e4e8b63dc8ee84aa7899f90ee185e9b6d1feb7583f7dc3a51a7837df42efcb79b850ff0f97c5eebc22dc8db750e5c5ee6b39a251be3d245c1e
@@ -103,9 +103,7 @@ module Fastlane
103
103
  UI.message("Launching all AVDs at the same time.".yellow)
104
104
  pids = []
105
105
  for i in 0...avd_controllers.length
106
- pids << Process.fork do
107
- Action.sh(avd_controllers[i].command_start_avd)
108
- end
106
+ pids << Process.spawn(avd_controllers[i].command_start_avd)
109
107
  end
110
108
 
111
109
  # Wait for AVDs finish booting
@@ -86,7 +86,7 @@ module Fastlane
86
86
  sh_create_avd_additional_options].join(" ")
87
87
 
88
88
  avd_controller.output_file = Tempfile.new('emulator_output')
89
- avd_output = File.exists?(avd_controller.output_file) ? ["&>", avd_controller.output_file.path, "&"].join("") : "&>/dev/null &"
89
+ avd_output = File.exists?(avd_controller.output_file) ? ["&>", avd_controller.output_file.path].join("") : "&>/dev/null &"
90
90
 
91
91
  avd_controller.command_start_avd = [
92
92
  sh_launch_emulator_binary,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module AutomatedTestEmulatorRunMik
3
- VERSION = "1.6.8"
3
+ VERSION = "1.6.9"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-automated_test_emulator_run_mik
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.8
4
+ version: 1.6.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kamil Krzyk