aboutsummaryrefslogblamecommitdiffstats
path: root/commands/deselect.go
blob: f92c81fdedd59f0d0a6d9de0ed0d5a8967f7b033 (plain) (tree)
1
2
3
4
5
6




                                                        
                                                       








                                                           
                                                










                                    
                                                    




                                     

                             





                                             
package commands

import (
	"github.com/MichaelMure/git-bug/cache"
	"github.com/MichaelMure/git-bug/commands/select"
	"github.com/MichaelMure/git-bug/util/interrupt"
	"github.com/spf13/cobra"
)

func runDeselect(cmd *cobra.Command, args []string) error {
	backend, err := cache.NewRepoCache(repo)
	if err != nil {
		return err
	}
	defer backend.Close()
	interrupt.RegisterCleaner(backend.Close)

	err = _select.Clear(backend)
	if err != nil {
		return err
	}

	return nil
}

var deselectCmd = &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: loadRepo,
	RunE:    runDeselect,
}

func init() {
	RootCmd.AddCommand(deselectCmd)
	deselectCmd.Flags().SortFlags = false
}