From c0e567ced158468e2d1d5750d111a4ebda565b7c Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Wed, 19 Feb 2020 11:55:25 +0530 Subject: [PATCH] feat: handle unknown commands --- bin/git-node | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/git-node b/bin/git-node index 3a9472c5..6006a828 100755 --- a/bin/git-node +++ b/bin/git-node @@ -14,6 +14,7 @@ yargs }) .command('help', false, () => {}, (yargs) => { yargs.showHelp(); }) .demandCommand(1) + .strict() .epilogue(epilogue) .help('help') .argv;