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 30a3d11 commit fc35658Copy full SHA for fc35658
lib/tunnel.js
@@ -544,8 +544,6 @@ function addArguments_(self, fnCallback) {
544
case 'pidfile':
545
case 'pac':
546
case 'controller':
547
- case 'nows':
548
- case 'version':
549
if (value) {
550
binaryArgs.push('--' + key);
551
binaryArgs.push(value);
@@ -719,6 +717,18 @@ function addArguments_(self, fnCallback) {
719
717
720
718
}
721
break;
+ case 'now':
+ if (value && !options['legacy']) {
722
+ binaryArgs.push('--now');
723
+ binaryArgs.push(value);
724
+ }
725
+ break;
726
+ case 'version':
727
728
+ binaryArgs.push('--version');
729
730
731
732
733
734
if (binaryArgs.indexOf('--controller') === -1) {
0 commit comments