From 7397c94d993541b33e555b758ebdb8f61ff33c6c Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Fri, 31 Aug 2018 13:18:03 +0200 Subject: make CLI commands use the cache to lock the repo properly --- bug/bug_actions.go | 1 + 1 file changed, 1 insertion(+) (limited to 'bug') diff --git a/bug/bug_actions.go b/bug/bug_actions.go index 784397b0..31e9c07d 100644 --- a/bug/bug_actions.go +++ b/bug/bug_actions.go @@ -25,6 +25,7 @@ func Push(repo repository.Repo, remote string) (string, error) { return repo.PushRefs(remote, bugsRefPattern+"*") } +// TODO: return a chan of changes for the cache to be updated properly func Pull(repo repository.Repo, out io.Writer, remote string) error { if out == nil { out = ioutil.Discard -- cgit