From d2d81ff1885fc8d726633591b81336790768e08e Mon Sep 17 00:00:00 2001 From: Tony Kovanen Date: Wed, 20 Apr 2016 01:27:56 +0300 Subject: [PATCH] Show error properly on missing `did` --- bin/now-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now-remove b/bin/now-remove index 1da370e..7c76f05 100755 --- a/bin/now-remove +++ b/bin/now-remove @@ -31,7 +31,7 @@ if (argv.h || argv.help) { } if (!deploymentId) { - console.log(`${chalk.cyan('> No deployment id specified. You can see active deployments with `now ls`.')}`); + error('No deployment id specified. You can see active deployments with `now ls`.'); process.exit(1); }