Skip to content

Commit 30a3d11

Browse files
author
Kanhaiya Lal Singh
committed
New binary release
1 parent 958c557 commit 30a3d11

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

lib/tunnel.js

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -607,13 +607,6 @@ function addArguments_(self, fnCallback) {
607607
}
608608
break;
609609

610-
case 'verbose':
611-
case 'v':
612-
if (value) {
613-
binaryArgs.push('--verbose');
614-
}
615-
break;
616-
617610
case 'configurationfile':
618611
case 'conffile':
619612
case 'configfile':
@@ -649,6 +642,12 @@ function addArguments_(self, fnCallback) {
649642
}
650643
break;
651644

645+
case 'verbose':
646+
case 'v':
647+
if (value && !options['legacy']) {
648+
binaryArgs.push('--verbose');
649+
}
650+
break;
652651
case 'mode':
653652
if (value && !options['legacy']) {
654653
binaryArgs.push('--' + key);

0 commit comments

Comments
 (0)