aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-25 17:58:54 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-25 17:58:54 +0200
commita28f325a439823e7883c5208267d358e56c90334 (patch)
tree4e3ea22febf8a26537a20a6b077b352795a3ec96
parent78e5ec36b4713db84b4c789c797f8eed19964cfd (diff)
downloadgit-bug-a28f325a439823e7883c5208267d358e56c90334.tar.gz
fix remote refs pattern to match default git behavior
-rw-r--r--bug/bug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/bug.go b/bug/bug.go
index d698a055..1e0c3e0d 100644
--- a/bug/bug.go
+++ b/bug/bug.go
@@ -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"