From a28f325a439823e7883c5208267d358e56c90334 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Wed, 25 Jul 2018 17:58:54 +0200 Subject: [PATCH] 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 d698a0550eb12f21dd06de0bd2878f1f9574acc3..1e0c3e0de9902036559eb1f73c61581c5a384ed9 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"