From a28f325a439823e7883c5208267d358e56c90334 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 25 Jul 2018 17:58:54 +0200 Subject: fix remote refs pattern to match default git behavior --- bug/bug.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit