diff --git a/bin/now-alias.js b/bin/now-alias.js index 1ac35f7..d7a0207 100755 --- a/bin/now-alias.js +++ b/bin/now-alias.js @@ -247,7 +247,7 @@ async function readConfirmation(alias, _alias) { process.stdout.write('> The following alias will be removed permanently\n') process.stdout.write(' ' + tbl + '\n') - process.stdout.write(` ${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(` ${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause() diff --git a/bin/now-certs.js b/bin/now-certs.js index 16905c7..543cb85 100755 --- a/bin/now-certs.js +++ b/bin/now-certs.js @@ -264,7 +264,7 @@ function readConfirmation(cert, msg) { process.stdout.write(`> ${msg}`) process.stdout.write(' ' + tbl + '\n') - process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause() diff --git a/bin/now-dns.js b/bin/now-dns.js index 08aede7..4f1658b 100755 --- a/bin/now-dns.js +++ b/bin/now-dns.js @@ -192,7 +192,7 @@ function readConfirmation(record, msg) { process.stdout.write(`> ${msg}`) process.stdout.write(' ' + tbl + '\n') - process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause() diff --git a/bin/now-domains.js b/bin/now-domains.js index 2cfc992..2cddcc5 100755 --- a/bin/now-domains.js +++ b/bin/now-domains.js @@ -244,7 +244,7 @@ async function readConfirmation(domain, _domain) { `will be removed. Run ${chalk.dim('`now alias ls`')} to list.\n`) } - process.stdout.write(` ${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(` ${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause() diff --git a/bin/now-remove.js b/bin/now-remove.js index e9537eb..7873683 100755 --- a/bin/now-remove.js +++ b/bin/now-remove.js @@ -94,7 +94,7 @@ function readConfirmation(matches) { } } - process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause() diff --git a/bin/now-secrets.js b/bin/now-secrets.js index 1388164..7060c98 100755 --- a/bin/now-secrets.js +++ b/bin/now-secrets.js @@ -229,7 +229,7 @@ function readConfirmation(secret) { process.stdout.write('> The following secret will be removed permanently\n') process.stdout.write(' ' + tbl + '\n') - process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`) + process.stdout.write(`${chalk.bold.red('> Are you sure?')} ${chalk.gray('[y/N] ')}`) process.stdin.on('data', d => { process.stdin.pause()