Browse Source

Fix rm warnings (#107)

master
Olli Vanhoja 9 years ago
committed by Guillermo Rauch
parent
commit
18733b30ee
  1. 2
      bin/now-alias
  2. 2
      bin/now-domains

2
bin/now-alias

@ -223,7 +223,7 @@ async function readConfirmation (alias, _alias, list) {
{ align: ['l', 'r', 'l'], hsep: ' '.repeat(6) }
);
process.stdout.write('> The following deployment will be removed permanently\n');
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] ')}`);

2
bin/now-domains

@ -215,7 +215,7 @@ async function readConfirmation (domain, _domain, list) {
{ align: ['l', 'r', 'l'], hsep: ' '.repeat(6) }
);
process.stdout.write('> The following deployment will be removed permanently\n');
process.stdout.write('> The following domain will be removed permanently\n');
process.stdout.write(' ' + tbl + '\n');
process.stdout.write(` ${chalk.bold.red('> Are you sure?')} ${chalk.gray('[yN] ')}`);

Loading…
Cancel
Save