2022-09-10 12:09:19 +03:00
|
|
|
package bugcmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/commands/execenv"
|
2022-12-27 21:40:40 +03:00
|
|
|
_select "github.com/MichaelMure/git-bug/commands/select"
|
|
|
|
"github.com/MichaelMure/git-bug/entities/bug"
|
2022-09-10 12:09:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func newBugDeselectCommand() *cobra.Command {
|
|
|
|
env := execenv.NewEnv()
|
|
|
|
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "deselect",
|
|
|
|
Short: "Clear the implicitly selected bug",
|
|
|
|
Example: `git bug select 2f15
|
|
|
|
git bug comment
|
|
|
|
git bug status
|
|
|
|
git bug deselect
|
|
|
|
`,
|
|
|
|
PreRunE: execenv.LoadBackend(env),
|
|
|
|
RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runBugDeselect(env)
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
func runBugDeselect(env *execenv.Env) error {
|
2022-12-27 21:40:40 +03:00
|
|
|
err := _select.Clear(env.Backend, bug.Namespace)
|
2022-09-10 12:09:19 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|