Skip to content
This repository was archived by the owner on Feb 13, 2020. It is now read-only.

Commit d177223

Browse files
author
Steven Hazel
committed
Have Sauce Connect drop a readyfile. Also, we're moving away from the word "OnDemand".
1 parent 857b1e0 commit d177223

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/sauce

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ConfigureCommand < CmdParse::Command
4646
end
4747
end
4848
configure = ConfigureCommand.new('configure', false)
49-
configure.short_desc = "Configure Sauce OnDemand credentials"
49+
configure.short_desc = "Configure Sauce Labs credentials"
5050
configure.set_execution_block do |args|
5151
if args.length < 2
5252
puts configure.usage
@@ -65,7 +65,7 @@ cmd.add_command(configure)
6565

6666
#create
6767
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"
6969
create.set_execution_block do |args|
7070
puts "Let's create a new account!"
7171
username = ask("Username: ")

gems/sauce-connect/lib/sauce/connect.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ def initialize(options={})
2727
end
2828

2929
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")
3232
@process_status = $?
3333
at_exit do
3434
Process.kill("INT", @pipe.pid)

0 commit comments

Comments
 (0)