From d8b86a3c10e457f3a1b076b221af97f8d707646d Mon Sep 17 00:00:00 2001 From: Frode Sundby Date: Thu, 26 Feb 2026 09:00:18 +0100 Subject: [PATCH] fix: add short -t for --team --- internal/flags/flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/flags/flag.go b/internal/flags/flag.go index 33d7b455..0b818716 100644 --- a/internal/flags/flag.go +++ b/internal/flags/flag.go @@ -12,7 +12,7 @@ type GlobalFlags struct { } type AdditionalFlags struct { - Team string `name:"team" usage:"Specify the team to use for this command. Overrides the default team from configuration."` + Team string `name:"team" short:"t" usage:"Specify the team to use for this command. Overrides the default team from configuration."` } func (a AdditionalFlags) RequiredTeam() (string, error) {