From d640214f0ee3fcff27d8b10388914abf32e620af Mon Sep 17 00:00:00 2001 From: filifa Date: Sun, 14 Jul 2024 19:25:18 -0500 Subject: [PATCH] list team codes in help --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index 5a9f1ea..fc1a126 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -166,6 +166,6 @@ func init() { // Cobra also supports local flags, which will only run // when this action is called directly. - rootCmd.Flags().VarP(&Team, "team", "t", "team to get updates for") + rootCmd.Flags().VarP(&Team, "team", "t", "team to get updates for (atl, az, bal, bos, chc, cin, cle, col, cws, det, hou, kc, laa, lad, mia, mil, min, nym, nyy, oak, phi, pit, sd, sea, sf, stl, tb, tex, tor, wsh)") rootCmd.MarkFlagRequired("team") }