From 1f33d4992dfd988112b83c814851ab3937dc2eee Mon Sep 17 00:00:00 2001 From: Ricardo Rosales Date: Sun, 7 Jan 2018 10:14:27 -0800 Subject: [PATCH] Fix host default value message for CLI help text (#211) per https://github.com/localtunnel/localtunnel/blob/master/lib/Tunnel.js#L17 --- bin/client | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/client b/bin/client index d67e045..1ff2631 100755 --- a/bin/client +++ b/bin/client @@ -7,7 +7,7 @@ var argv = require('yargs') .option('h', { alias: 'host', describe: 'Upstream server providing forwarding', - default: 'http://localtunnel.me' + default: 'https://localtunnel.me' }) .option('s', { alias: 'subdomain',