diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-13 21:51:27 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-13 21:51:27 +0200 |
commit | 35d64e4f9e3e0a0ffd041e430a64650bb8ea71fa (patch) | |
tree | 802ed0c56ab5b09fb29800a147e3fcf3d8557e55 /commands/pull.go | |
parent | 1779a0f3b92d58654b43444addeaf437a64d77a8 (diff) | |
download | git-bug-35d64e4f9e3e0a0ffd041e430a64650bb8ea71fa.tar.gz |
fix push/pull
Diffstat (limited to 'commands/pull.go')
-rw-r--r-- | commands/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/pull.go b/commands/pull.go index b3541c0f..105fce9c 100644 --- a/commands/pull.go +++ b/commands/pull.go @@ -17,7 +17,7 @@ func pull(repo repository.Repo, args []string) error { remote = args[0] } - if err := repo.PullRefs(remote, bug.BugsRefPattern+"*"); err != nil { + if err := repo.PullRefs(remote, bug.BugsRefPattern+"*", bug.BugsRemoteRefPattern+"*"); err != nil { return err } return nil |