Browse Source

Merge pull request #48 from dotcypress/patch-1

Fix `now alias ls` inconsistency
master
Olli Vanhoja 8 years ago
committed by GitHub
parent
commit
569ac6bb1a
  1. 2
      bin/now-alias

2
bin/now-alias

@ -145,7 +145,7 @@ async function run (token) {
}), { align: ['l', 'r', 'l'], hsep: ' '.repeat(2) });
const elapsed_ = ms(new Date() - start_);
console.log(`> ${list.length} alias${list.length > 1 ? 'es' : ''} found ${chalk.gray(`[${elapsed_}]`)}`);
console.log(`> ${aliases.length} alias${aliases.length > 1 ? 'es' : ''} found ${chalk.gray(`[${elapsed_}]`)}`);
if (text) console.log('\n' + text + '\n');
break;

Loading…
Cancel
Save