diff options
author | Michael Muré <batolettre@gmail.com> | 2020-12-08 14:42:13 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-12-08 14:42:13 +0100 |
commit | c884d557bf5e0ebdbe6e3b20535af24c2e97d29f (patch) | |
tree | 3bb95fcf0d6a2a19e6915cdcc1da4d70bc448bb4 /commands/ls.go | |
parent | 71e1303234ef227851998f08c98c7c69670c9966 (diff) | |
download | git-bug-c884d557bf5e0ebdbe6e3b20535af24c2e97d29f.tar.gz |
repo: move bleve there
Diffstat (limited to 'commands/ls.go')
-rw-r--r-- | commands/ls.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/commands/ls.go b/commands/ls.go index f6d654b1..327fd37f 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -110,7 +110,10 @@ func runLs(env *Env, opts lsOptions, args []string) error { return err } - allIds := env.backend.QueryBugs(q) + allIds, err := env.backend.QueryBugs(q) + if err != nil { + return err + } bugExcerpt := make([]*cache.BugExcerpt, len(allIds)) for i, id := range allIds { |