From 751fa7d990f82adf76d97590dceebaf2e74df343 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Fri, 27 May 2016 17:28:54 -0700 Subject: [PATCH] now: add `ln` as basic command --- bin/now | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/now b/bin/now index 16a3d6e..67e57a8 100755 --- a/bin/now +++ b/bin/now @@ -19,7 +19,7 @@ const exit = (code) => { }; const defaultCommand = 'deploy'; -const commands = new Set([defaultCommand, 'list', 'ls', 'rm', 'remove', 'alias']); +const commands = new Set([defaultCommand, 'list', 'ls', 'rm', 'remove', 'alias', 'ln']); const aliases = new Map([['ls', 'list'], ['rm', 'remove'], ['ln', 'alias']]); let cmd = argv._[0];