diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:18:51 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-21 18:53:37 +0200 |
commit | 82eaceffc1d750832a2a66f206749d2dca968cce (patch) | |
tree | 1431c8f1fd9baa689b850da7f104d12c20b1d8a7 /bug/bug_actions.go | |
parent | 6a575fbf483e2b28821908f67e87637d9e5cea75 (diff) | |
download | git-bug-82eaceffc1d750832a2a66f206749d2dca968cce.tar.gz |
repo: split the Repo interface to avoid abstraction leak in RepoCache
Diffstat (limited to 'bug/bug_actions.go')
-rw-r--r-- | bug/bug_actions.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bug/bug_actions.go b/bug/bug_actions.go index 8be4420f..487ba25e 100644 --- a/bug/bug_actions.go +++ b/bug/bug_actions.go @@ -25,7 +25,7 @@ func Push(repo repository.Repo, remote string) (string, error) { // Pull will do a Fetch + MergeAll // This function won't give details on the underlying process. If you need more // use Fetch and MergeAll separately. -func Pull(repo repository.Repo, remote string) error { +func Pull(repo repository.ClockedRepo, remote string) error { _, err := Fetch(repo, remote) if err != nil { return err @@ -41,7 +41,7 @@ func Pull(repo repository.Repo, remote string) error { } // MergeAll will merge all the available remote bug -func MergeAll(repo repository.Repo, remote string) <-chan MergeResult { +func MergeAll(repo repository.ClockedRepo, remote string) <-chan MergeResult { out := make(chan MergeResult) go func() { |