Skip to content

Commit 78f2754

Browse files
committed
Merge pull request #135 from shirish87/travis-fix
Local: Fix for failing Travis builds Now passing localIdentifier arg to child_process.execFile as a separate array element instead of string concat. Fixes #102.
2 parents c4f18be + 001204c commit 78f2754

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/local.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ var Tunnel = function Tunnel(key, port, uniqueIdentifier, callback) {
7070
options.push('-force');
7171
options.push('-onlyAutomate');
7272
} else {
73-
options.push('-localIdentifier ' + uniqueIdentifier);
73+
options.push('-localIdentifier');
74+
options.push(uniqueIdentifier);
7475
}
7576

7677
var proxy = config.proxy;

0 commit comments

Comments
 (0)