We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 958c557 commit 30a3d11Copy full SHA for 30a3d11
lib/tunnel.js
@@ -607,13 +607,6 @@ function addArguments_(self, fnCallback) {
607
}
608
break;
609
610
- case 'verbose':
611
- case 'v':
612
- if (value) {
613
- binaryArgs.push('--verbose');
614
- }
615
- break;
616
-
617
case 'configurationfile':
618
case 'conffile':
619
case 'configfile':
@@ -649,6 +642,12 @@ function addArguments_(self, fnCallback) {
649
642
650
643
651
644
645
+ case 'verbose':
646
+ case 'v':
647
+ if (value && !options['legacy']) {
648
+ binaryArgs.push('--verbose');
+ }
+ break;
652
case 'mode':
653
if (value && !options['legacy']) {
654
binaryArgs.push('--' + key);
0 commit comments