add tunnel arg

This commit is contained in:
AJ ONeal 2016-10-07 10:44:25 -06:00
parent bba1605ba3
commit 992d0a609a
1 changed files with 3 additions and 0 deletions

View File

@ -278,6 +278,9 @@ function run() {
if (argv.p || argv.port || argv._[0]) { if (argv.p || argv.port || argv._[0]) {
opts.manualPort = true; opts.manualPort = true;
} }
if (argv.t || argv.tunnel) {
opts.tunnel = true;
}
if (argv.i || argv['insecure-port']) { if (argv.i || argv['insecure-port']) {
opts.manualInsecurePort = true; opts.manualInsecurePort = true;
} }