From 554d412137b1ab5391d67a73aba6026cb87b522a Mon Sep 17 00:00:00 2001 From: jae beller Date: Tue, 10 Mar 2026 18:07:13 -0400 Subject: [PATCH] Update CLI docs parser to new help page format "Usage:" -> "Flags:" Will follow up with a fix to the Action. skip-checks: true --- scripts/generate-cli-docs/help-parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-cli-docs/help-parser.ts b/scripts/generate-cli-docs/help-parser.ts index 5e8e8f7..10d95c5 100644 --- a/scripts/generate-cli-docs/help-parser.ts +++ b/scripts/generate-cli-docs/help-parser.ts @@ -44,7 +44,7 @@ export function parseHelpOutput(command: string, output: string): ParsedHelp { continue; } - if (trimmedLine === 'Options:' || trimmedLine.startsWith('Options:')) { + if (trimmedLine === 'Flags:' || trimmedLine.startsWith('Flags:')) { // Save any pending option if (currentOption?.long) { result.options.push(currentOption as ParsedOption);