mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
3c0c13bbbe
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
36 lines
543 B
Go
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)
|
|
}
|