From 81214d9fcf8aef08fd6ab54f1e2847964d988bc0 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Sat, 23 Apr 2016 16:26:12 -0700 Subject: [PATCH] now-remove: improve success message output --- bin/now-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now-remove b/bin/now-remove index 055140d..c59daa5 100755 --- a/bin/now-remove +++ b/bin/now-remove @@ -93,7 +93,7 @@ async function remove (token) { const start = new Date(); await now.remove(deploymentId, { hard }); const elapsed = ms(new Date() - start); - console.log(`${chalk.cyan('> Deployment')} ${chalk.bold(deploymentId)} ${chalk.cyan('removed')} [${elapsed}]`); + console.log(`${chalk.cyan('> Success!')} Deployment ${chalk.bold(deploymentId)} removed [${elapsed}]`); } catch (err) { handleError(err); process.exit(1);