diff --git a/scripts/post-install.js b/scripts/post-install.js index e1b6199..5faf9ac 100755 --- a/scripts/post-install.js +++ b/scripts/post-install.js @@ -1,7 +1,14 @@ #!/usr/bin/env node import login from '../lib/login'; +import chalk from 'chalk'; -login().then(() => { +console.log(`> ${chalk.bold('Authenticating…')}`); + +login() +.then(() => { console.log('> Logged in successfully. Token saved in ~/.now.json'); process.exit(0); +}) +.catch((err) => { + console.error(`> Error. Login filed. Run \`now --login\` to retry.`); });