From 6298b27acf384c54273e9e23db821fc421fed16a Mon Sep 17 00:00:00 2001 From: Andrej Pufler Date: Wed, 17 Jul 2024 10:19:53 +0200 Subject: [PATCH] CODOWNER typo fix --- README.md | 2 +- src/cli.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 024faab..fb649c5 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ Full usage information: $ github-codeowners validate --help Usage: github-codeowners validate [options] -Validates a CODOWNER file and files in dir +Validates a CODEOWNER file and files in dir Options: -d, --dir path to VCS directory (default: "") diff --git a/src/cli.ts b/src/cli.ts index 05b6abd..d698bc4 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -42,7 +42,7 @@ commander.command('audit') }); commander.command('validate') - .description('Validates a CODOWNER file and files in dir') + .description('Validates a CODEOWNER file and files in dir') .option('-d, --dir ', 'path to VCS directory', process.cwd()) .option('-c, --codeowners ', 'path to codeowners file (default: "/.github/CODEOWNERS")') .option('-r, --root ', 'the root path to filter files by', '')