git-bug/commands/ls-id.go
Sladyn 3c0c13bbbe ls-id.go:Add ls-id [<prefix>] command
This file adds the ls-id command which returns
the bug id matching the prefix the user enters.
If no prefix entered it lists all the BugId's

Closes #47
2019-02-25 21:20:51 +05:30

36 lines
543 B
Go

package commands
import (
"fmt"
"strings"
"github.com/MichaelMure/git-bug/cache"
"github.com/spf13/cobra"
)
func runLsID(cmd *cobra.Command, args []string) error {
var backend *cache.RepoCache
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>]",
Short: "List Bug Id",
PreRunE: loadRepo,
RunE: runLsID,
}
func init() {
RootCmd.AddCommand(listBugIDCmd)
}