From e1b6b48c485644896f5e55867ceecd2f82b435e7 Mon Sep 17 00:00:00 2001 From: jdamore-linode <97627410+jdamore-linode@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:14:53 -0400 Subject: [PATCH] Fix conflicting shorthand flags for TOD script (#11055) --- scripts/tod-payload/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tod-payload/index.ts b/scripts/tod-payload/index.ts index 7a337f4428e..6cfa16fc230 100644 --- a/scripts/tod-payload/index.ts +++ b/scripts/tod-payload/index.ts @@ -17,7 +17,7 @@ program .option('-v, --appVersion ', 'Application version') .option('-t, --appTeam ', 'Application team name') .option('-f, --fail', 'Treat payload as failure') - .option('-t, --tag ', 'Optional tag for run') + .option('-T, --tag ', 'Optional tag for run') .action((junitPath: string) => { return main(junitPath);