From 33e7c165c9fb5594821005b7ee55826e5a305487 Mon Sep 17 00:00:00 2001 From: Antonio Jesus Navarro Perez Date: Tue, 7 Mar 2017 12:58:18 +0100 Subject: project: move imports from srcd.works to gopkg.in To be able to fix #261 we will move again to gopkg.in before v4 stable release. --- repository.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'repository.go') diff --git a/repository.go b/repository.go index c065a26..276119c 100644 --- a/repository.go +++ b/repository.go @@ -6,16 +6,16 @@ import ( "os" "path/filepath" - "srcd.works/go-git.v4/config" - "srcd.works/go-git.v4/internal/revision" - "srcd.works/go-git.v4/plumbing" - "srcd.works/go-git.v4/plumbing/object" - "srcd.works/go-git.v4/plumbing/storer" - "srcd.works/go-git.v4/storage" - "srcd.works/go-git.v4/storage/filesystem" - - "srcd.works/go-billy.v1" - "srcd.works/go-billy.v1/osfs" + "gopkg.in/src-d/go-git.v4/config" + "gopkg.in/src-d/go-git.v4/internal/revision" + "gopkg.in/src-d/go-git.v4/plumbing" + "gopkg.in/src-d/go-git.v4/plumbing/object" + "gopkg.in/src-d/go-git.v4/plumbing/storer" + "gopkg.in/src-d/go-git.v4/storage" + "gopkg.in/src-d/go-git.v4/storage/filesystem" + + "gopkg.in/src-d/go-billy.v1" + "gopkg.in/src-d/go-billy.v1/osfs" ) var ( -- cgit From 8df64141e32abd9bd07d5dfd917c76a8a6dbe3f6 Mon Sep 17 00:00:00 2001 From: Antonio Jesus Navarro Perez Date: Fri, 10 Mar 2017 12:23:51 +0100 Subject: use go-billy.v2 version --- repository.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'repository.go') diff --git a/repository.go b/repository.go index 276119c..ffb61d8 100644 --- a/repository.go +++ b/repository.go @@ -14,8 +14,8 @@ import ( "gopkg.in/src-d/go-git.v4/storage" "gopkg.in/src-d/go-git.v4/storage/filesystem" - "gopkg.in/src-d/go-billy.v1" - "gopkg.in/src-d/go-billy.v1/osfs" + "gopkg.in/src-d/go-billy.v2" + "gopkg.in/src-d/go-billy.v2/osfs" ) var ( -- cgit