From c0d50a35dc5defb9d46595ef07fb5a7cd10236a9 Mon Sep 17 00:00:00 2001 From: Sandeep S J Date: Fri, 13 Dec 2019 02:26:45 +0530 Subject: [PATCH] key is optional for command line now. --- bin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/index.js b/bin/index.js index 99cf9fe..af80248 100755 --- a/bin/index.js +++ b/bin/index.js @@ -31,7 +31,7 @@ program .action(submitTask); program - .command('fetchtask ') + .command('fetchtask [key]') .description('Fetches any task as per the key supplied') .action(fetchTask);