From 53382ebf7dfffc76b9a1acc59fb24131ce27bd66 Mon Sep 17 00:00:00 2001 From: Dustin Popp Date: Thu, 16 Jan 2020 10:27:09 -0600 Subject: [PATCH] fix: add command name for improved usage output (#122) --- src/cli-validator/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli-validator/index.js b/src/cli-validator/index.js index 6723443de..df1e78513 100755 --- a/src/cli-validator/index.js +++ b/src/cli-validator/index.js @@ -13,6 +13,7 @@ const version = require('../../package.json').version; // set up the command line options /* prettier-ignore */ program + .name('lint-openapi') .version(version, '-v, --version') .description('Run the validator on a specified file') .arguments('[]')