mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
38 lines
687 B
Go
38 lines
687 B
Go
package commands
|
|
|
|
import (
|
|
_select "github.com/MichaelMure/git-bug/commands/select"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func newTitleCommand() *cobra.Command {
|
|
env := newEnv()
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "title [ID]",
|
|
Short: "Display or change a title of a bug.",
|
|
PreRunE: loadBackend(env),
|
|
PostRunE: closeBackend(env),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return runTitle(env, args)
|
|
},
|
|
}
|
|
|
|
cmd.AddCommand(newTitleEditCommand())
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runTitle(env *Env, args []string) error {
|
|
b, args, err := _select.ResolveBug(env.backend, args)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
snap := b.Snapshot()
|
|
|
|
env.out.Println(snap.Title)
|
|
|
|
return nil
|
|
}
|