diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-25 17:58:54 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-25 17:58:54 +0200 |
commit | a28f325a439823e7883c5208267d358e56c90334 (patch) | |
tree | 4e3ea22febf8a26537a20a6b077b352795a3ec96 /bug/bug.go | |
parent | 78e5ec36b4713db84b4c789c797f8eed19964cfd (diff) | |
download | git-bug-a28f325a439823e7883c5208267d358e56c90334.tar.gz |
fix remote refs pattern to match default git behavior
Diffstat (limited to 'bug/bug.go')
-rw-r--r-- | bug/bug.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ import ( ) const bugsRefPattern = "refs/bugs/" -const bugsRemoteRefPattern = "refs/remote/%s/bugs/" +const bugsRemoteRefPattern = "refs/remotes/%s/bugs/" const opsEntryName = "ops" const rootEntryName = "root" |