From 1be3a4685b085cdb944ad3c5669c702618cb96c7 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Thu, 23 Jun 2016 10:35:08 -0700 Subject: [PATCH] fix remove --- bin/now-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now-remove b/bin/now-remove index 662f003..230718d 100755 --- a/bin/now-remove +++ b/bin/now-remove @@ -100,7 +100,7 @@ async function remove (token) { error(`Could not find a deployment by ${chalk.bold(`"${deploymentId}"`)}. Run ${chalk.dim(`\`now ls\``)} to list.`); return process.exit(1); } - const aliases = await now.listAliases(app.uid); + const aliases = await now.listAliases(depl.uid); try { const confirmation = (await readConfirmation(depl, aliases)).toLowerCase();