From 9be44460fbf0aac501c8e4c1b38e4e6e90684846 Mon Sep 17 00:00:00 2001 From: David McKay <david@rawkode.com> Date: Wed, 22 Mar 2017 07:01:40 +0000 Subject: [PATCH] Fixing import path for go-git. More information: https://github.com/src-d/go-git/pull/303 Signed-off-by: David McKay <david@rawkode.com> --- pkg/util/git/git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/git/git.go b/pkg/util/git/git.go index b0a7e08..2655250 100644 --- a/pkg/util/git/git.go +++ b/pkg/util/git/git.go @@ -1,7 +1,7 @@ // Package git is a facade for git methods used by boilr package git -import git "srcd.works/go-git.v4" +import git "gopkg.in/src-d/go-git.v4" // CloneOptions are used when cloning a git repository type CloneOptions git.CloneOptions -- GitLab