From d293839c5a91de4c851d35ce31d53e2455e4ad69 Mon Sep 17 00:00:00 2001 From: Dominique Hazael-Massieux Date: Mon, 6 Jan 2025 10:00:48 +0100 Subject: [PATCH] Remove invalid command line option in commander 13 --- strudy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strudy.js b/strudy.js index 6c73c4ed..55a1d3ad 100644 --- a/strudy.js +++ b/strudy.js @@ -64,7 +64,7 @@ program .command('inspect') .alias('study') .argument('', 'Path/URL to crawl report') - .option('-cc, --cc ', 'people to Cc in issues that may need help') + .option('--cc ', 'people to Cc in issues that may need help') .option('-f, --format ', 'report markdown or json', 'markdown') .option('-i, --issues ', 'report issues as markdown files in the given folder') .option('-m, --max ', 'maximum number of issue files to create/update', myParseInt, 0)