blob: 94755b2d515a62752bd76d94fc9d4b6f88ebd14a (
plain) (
tree)
|
|
package commands
import (
"fmt"
b "github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/repository"
)
func runLsBug(repo repository.Repo, args []string) error {
ids, err := repo.ListRefs(b.BugsRefPattern)
if err != nil {
return err
}
for _, ref := range ids {
bug, err := b.ReadBug(repo, b.BugsRefPattern+ref)
if err != nil {
return err
}
snapshot := bug.Compile()
fmt.Printf("%s %s\t%s\n", bug.HumanId(), snapshot.Title, snapshot.Summary())
}
return nil
}
var lsCmd = &Command{
Description: "Display a summary of all bugs",
Usage: "",
RunMethod: runLsBug,
}
|