git-bug/commands/ls-id.go

45 lines
753 B
Go
Raw Normal View History

package commands
import (
"fmt"
"strings"
"github.com/MichaelMure/git-bug/cache"
2019-03-06 14:55:32 +03:00
"github.com/MichaelMure/git-bug/util/interrupt"
"github.com/spf13/cobra"
)
func runLsID(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
2019-03-06 14:55:32 +03:00
interrupt.RegisterCleaner(backend.Close)
var prefix = ""
if len(args) != 0 {
prefix = args[0]
}
for _, id := range backend.AllBugsIds() {
if prefix == "" || strings.HasPrefix(id, prefix) {
fmt.Println(id)
}
}
return nil
}
var listBugIDCmd = &cobra.Command{
Use: "ls-id [<prefix>]",
2019-05-04 20:54:12 +03:00
Short: "List bug identifiers.",
PreRunE: loadRepo,
RunE: runLsID,
}
func init() {
RootCmd.AddCommand(listBugIDCmd)
}