This repository was archived by the owner on Feb 13, 2020. It is now read-only.
File tree 2 files changed +4
-4
lines changed
gems/sauce-connect/lib/sauce
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class ConfigureCommand < CmdParse::Command
46
46
end
47
47
end
48
48
configure = ConfigureCommand . new ( 'configure' , false )
49
- configure . short_desc = "Configure Sauce OnDemand credentials"
49
+ configure . short_desc = "Configure Sauce Labs credentials"
50
50
configure . set_execution_block do |args |
51
51
if args . length < 2
52
52
puts configure . usage
@@ -65,7 +65,7 @@ cmd.add_command(configure)
65
65
66
66
#create
67
67
create = CmdParse ::Command . new ( 'create' , false )
68
- create . short_desc = "Create a new Sauce OnDemand account"
68
+ create . short_desc = "Create a new Sauce Labs account"
69
69
create . set_execution_block do |args |
70
70
puts "Let's create a new account!"
71
71
username = ask ( "Username: " )
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ def initialize(options={})
27
27
end
28
28
29
29
def connect
30
- puts "[Connecting to Sauce OnDemand ...]"
31
- @pipe = IO . popen ( "exec #{ Sauce ::Connect . connect_command } #{ @config . username } #{ @config . access_key } 2>&1" )
30
+ puts "[Connecting to Sauce Labs ...]"
31
+ @pipe = IO . popen ( "exec #{ Sauce ::Connect . connect_command } #{ @config . username } #{ @config . access_key } -f sauce_connect.ready 2>&1" )
32
32
@process_status = $?
33
33
at_exit do
34
34
Process . kill ( "INT" , @pipe . pid )
You can’t perform that action at this time.
0 commit comments