Skip to content

Commit 295049d

Browse files
committed
updated lint
1 parent 7a369a0 commit 295049d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/LocalBinary.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ function LocalBinary(){
99
this.is64bits = process.arch == 'x64';
1010

1111
if(this.hostOS.match(/darwin|mac os/i)){
12-
this.httpPath = "https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-darwin-x64";
12+
this.httpPath = 'https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-darwin-x64';
1313
} else if(this.hostOS.match(/mswin|msys|mingw|cygwin|bccwin|wince|emc/i)) {
1414
this.windows = true;
15-
this.httpPath = "https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-win32.exe";
15+
this.httpPath = 'https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-win32.exe';
1616
} else {
1717
if(this.is64bits)
18-
this.httpPath = "https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-linux-x64";
18+
this.httpPath = 'https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-linux-x64';
1919
else
20-
this.httpPath = "https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-linux-ia32";
20+
this.httpPath = 'https://s3.amazonaws.com/bs-automate-prod/local/BrowserStackLocal-linux-ia32';
2121
}
2222

2323
this.orderedPaths = [

0 commit comments

Comments
 (0)