aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/index
diff options
context:
space:
mode:
authorAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-03-07 12:58:18 +0100
committerAntonio Jesus Navarro Perez <antonio@sourced.tech>2017-03-07 12:58:18 +0100
commit33e7c165c9fb5594821005b7ee55826e5a305487 (patch)
tree2f858902843f22379c80512c4b2f2dc1221723ad /plumbing/format/index
parentf64e4b856865bc37f45e55ef094060481b53928e (diff)
downloadgo-git-33e7c165c9fb5594821005b7ee55826e5a305487.tar.gz
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.
Diffstat (limited to 'plumbing/format/index')
-rw-r--r--plumbing/format/index/decoder.go4
-rw-r--r--plumbing/format/index/decoder_test.go4
-rw-r--r--plumbing/format/index/encoder.go2
-rw-r--r--plumbing/format/index/encoder_test.go2
-rw-r--r--plumbing/format/index/index.go4
5 files changed, 8 insertions, 8 deletions
diff --git a/plumbing/format/index/decoder.go b/plumbing/format/index/decoder.go
index 59581da..4bc5af1 100644
--- a/plumbing/format/index/decoder.go
+++ b/plumbing/format/index/decoder.go
@@ -10,8 +10,8 @@ import (
"strconv"
"time"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/utils/binary"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/utils/binary"
)
var (
diff --git a/plumbing/format/index/decoder_test.go b/plumbing/format/index/decoder_test.go
index 3a6e0d4..fd83ffb 100644
--- a/plumbing/format/index/decoder_test.go
+++ b/plumbing/format/index/decoder_test.go
@@ -3,8 +3,8 @@ package index
import (
"testing"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/plumbing/filemode"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing/filemode"
"github.com/src-d/go-git-fixtures"
. "gopkg.in/check.v1"
diff --git a/plumbing/format/index/encoder.go b/plumbing/format/index/encoder.go
index bdb10c1..d568f15 100644
--- a/plumbing/format/index/encoder.go
+++ b/plumbing/format/index/encoder.go
@@ -9,7 +9,7 @@ import (
"sort"
"time"
- "srcd.works/go-git.v4/utils/binary"
+ "gopkg.in/src-d/go-git.v4/utils/binary"
)
var (
diff --git a/plumbing/format/index/encoder_test.go b/plumbing/format/index/encoder_test.go
index a6a0ea2..f76fafe 100644
--- a/plumbing/format/index/encoder_test.go
+++ b/plumbing/format/index/encoder_test.go
@@ -6,7 +6,7 @@ import (
"time"
. "gopkg.in/check.v1"
- "srcd.works/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing"
)
func (s *IndexSuite) TestEncode(c *C) {
diff --git a/plumbing/format/index/index.go b/plumbing/format/index/index.go
index e706058..ee50efd 100644
--- a/plumbing/format/index/index.go
+++ b/plumbing/format/index/index.go
@@ -4,8 +4,8 @@ import (
"errors"
"time"
- "srcd.works/go-git.v4/plumbing"
- "srcd.works/go-git.v4/plumbing/filemode"
+ "gopkg.in/src-d/go-git.v4/plumbing"
+ "gopkg.in/src-d/go-git.v4/plumbing/filemode"
)
var (