From e8ff848e3b51bdddea0fc975f0cc11519ca09f8b Mon Sep 17 00:00:00 2001 From: Tony Kovanen Date: Sun, 24 Apr 2016 01:56:09 +0300 Subject: [PATCH] Add `https://` to displayed url for cmd + click --- bin/now-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now-remove b/bin/now-remove index b5f1482..3815667 100755 --- a/bin/now-remove +++ b/bin/now-remove @@ -45,7 +45,7 @@ const config = cfg.read(); function readConfirmation (url) { return new Promise((resolve, reject) => { - process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.bold(url)} will be removed permanently ${chalk.gray('[yN] ')}`); + process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.bold('https://' + url)} will be removed permanently ${chalk.gray('[yN] ')}`); process.stdin.on('data', (d) => { process.stdin.pause(); resolve(d.toString().trim());