git-bug/commands/status.go
2018-09-21 13:37:22 +02:00

39 lines
629 B
Go

package commands
import (
"fmt"
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/commands/select"
"github.com/spf13/cobra"
)
func runStatus(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
b, args, err := _select.ResolveBug(backend, args)
if err != nil {
return err
}
snap := b.Snapshot()
fmt.Println(snap.Status)
return nil
}
var statusCmd = &cobra.Command{
Use: "status [<id>]",
Short: "Display or change a bug status",
RunE: runStatus,
}
func init() {
RootCmd.AddCommand(statusCmd)
}