diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-31 13:18:03 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-31 17:22:10 +0200 |
commit | 7397c94d993541b33e555b758ebdb8f61ff33c6c (patch) | |
tree | dbdc52bb6efa03791e5ca84bc8695da5103524d2 /commands/ls.go | |
parent | 116a94401f0d3fbf79f7e20716b1c7b739e33246 (diff) | |
download | git-bug-7397c94d993541b33e555b758ebdb8f61ff33c6c.tar.gz git-bug-7397c94d993541b33e555b758ebdb8f61ff33c6c.zip |
make CLI commands use the cache to lock the repo properly
Diffstat (limited to 'commands/ls.go')
-rw-r--r-- | commands/ls.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/commands/ls.go b/commands/ls.go index 30aa7bdcd..533f3d1e5 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -9,6 +9,13 @@ import ( ) func runLsBug(cmd *cobra.Command, args []string) error { + //backend, err := cache.NewRepoCache(repo) + //if err != nil { + // return err + //} + + // Todo: read bugs from backend + bugs := bug.ReadAllLocalBugs(repo) for b := range bugs { |