git-bug/commands/status_close.go

37 lines
669 B
Go
Raw Normal View History

2018-07-17 20:28:37 +03:00
package commands
import (
_select "github.com/MichaelMure/git-bug/commands/select"
2020-06-28 19:26:29 +03:00
"github.com/spf13/cobra"
2018-07-17 20:28:37 +03:00
)
2020-06-28 19:26:29 +03:00
func newStatusCloseCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
Use: "close [ID]",
Short: "Mark a bug as closed.",
PreRunE: loadBackendEnsureUser(env),
PostRunE: closeBackend(env),
2020-06-28 19:26:29 +03:00
RunE: func(cmd *cobra.Command, args []string) error {
return runStatusClose(env, args)
},
}
return cmd
}
func runStatusClose(env *Env, args []string) error {
b, args, err := _select.ResolveBug(env.backend, args)
2018-07-17 20:28:37 +03:00
if err != nil {
return err
}
2019-02-24 14:58:04 +03:00
_, err = b.Close()
if err != nil {
return err
}
return b.Commit()
2018-07-17 20:28:37 +03:00
}