diff --git a/scripts/src/cicd-branch-follower.ts b/scripts/src/cicd-branch-follower.ts index e8ef288e..5a7ee252 100644 --- a/scripts/src/cicd-branch-follower.ts +++ b/scripts/src/cicd-branch-follower.ts @@ -142,7 +142,6 @@ function parseOptions(args: string[]): ParsedOptions { options.full = true; } else if (arg === "--raw" || arg === "--json") { options.raw = true; - options.full = true; options.output = "json"; } else if (arg === "--record-state") { options.recordState = true; @@ -154,7 +153,6 @@ function parseOptions(args: string[]): ParsedOptions { options.output = value === "wide" || value === "text" ? "human" : value; if (value === "json" || value === "yaml") { options.raw = true; - options.full = true; } } else if (arg === "--limit") { options.limit = positiveInt(valueOption(rest, ++index, arg), arg);