Skip to content

Commit 001204c

Browse files
committed
Fixed args for execFile
1 parent 1f9698a commit 001204c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/local.js

Lines changed: 2 additions & 1 deletion
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)