Skip to content

Commit

Permalink
add -x param (#142)
Browse files Browse the repository at this point in the history
* add -x param

* Update sauce-connect-launcher.js

* Update sauce-connect-launcher.js
  • Loading branch information
fpoppinga authored and johanneswuerbach committed Apr 15, 2019
1 parent de7a113 commit 84893b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/sauce-connect-launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ function download(options, callback) {

function connect(bin, options, callback) {
var child;
var logger = options.logger || function () {};
var logger = options.logger || function() {};
var starting = true;
var done = function (err, child) {
if (!starting) {
Expand Down Expand Up @@ -465,6 +465,7 @@ function connect(bin, options, callback) {
"/" + readyFileName);

args.push("--readyfile", readyfile);
args.push("-x", `https://${SAUCE_API_HOST}/rest/v1`);

// Watching file as directory watching does not work on
// all File Systems http://nodejs.org/api/fs.html#fs_caveats
Expand Down

0 comments on commit 84893b1

Please sign in to comment.