File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -121,11 +121,11 @@ function Local(){
121
121
this . key = value ;
122
122
break ;
123
123
124
- case 'verbose' :
124
+ case 'verbose' :
125
125
if ( value . toString ( ) !== 'true' )
126
126
this . verboseFlag = value ;
127
127
else {
128
- this . verboseFlag = 1 ;
128
+ this . verboseFlag = 1 ;
129
129
}
130
130
break ;
131
131
@@ -195,7 +195,7 @@ function Local(){
195
195
this . logfile = value ;
196
196
break ;
197
197
198
- case 'parallelRuns' :
198
+ case 'parallelRuns' :
199
199
if ( value )
200
200
this . parallelRunsFlag = value ;
201
201
break ;
@@ -232,8 +232,8 @@ function Local(){
232
232
if ( this . folderFlag )
233
233
args . push ( this . folderFlag ) ;
234
234
if ( this . key ) {
235
- args . push ( '--key' ) ;
236
- args . push ( this . key ) ;
235
+ args . push ( '--key' ) ;
236
+ args . push ( this . key ) ;
237
237
}
238
238
if ( this . folderPath )
239
239
args . push ( this . folderPath ) ;
@@ -247,9 +247,10 @@ function Local(){
247
247
args . push ( '--parallel-runs' ) ;
248
248
args . push ( this . parallelRunsFlag ) ;
249
249
}
250
- if ( this . onlyHosts )
250
+ if ( this . onlyHosts ) {
251
251
args . push ( '--only' ) ;
252
252
args . push ( this . onlyHosts ) ;
253
+ }
253
254
if ( this . onlyAutomateFlag )
254
255
args . push ( this . onlyAutomateFlag ) ;
255
256
if ( this . proxyHost ) {
You can’t perform that action at this time.
0 commit comments