CLI/TUI for drafting, repeating, and publishing daily standup updates as GitHub issues
github go cli golang management project tui daily
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: skip update notice after upgrade command

+4
+4
cmd/root.go
··· 17 17 SilenceErrors: true, 18 18 Version: version, 19 19 PersistentPostRun: func(cmd *cobra.Command, args []string) { 20 + // Don't show upgrade notice after running upgrade command 21 + if cmd.Name() == "upgrade" { 22 + return 23 + } 20 24 showUpdateNotice() 21 25 }, 22 26 }