blob: b98668282d4310fbf29050efc9faccde5823f8a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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)
}
|