aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/idxfile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2017-01-30 23:52:39 +0100
commit85a4efcc45312f022111907d82c5cc4ee3bdbb73 (patch)
tree2664a776225ba29d70b1dfcb4e89365f7682007d /plumbing/format/idxfile
parent30ebf1bd9bb44f540d31633a12689c7d8b6a0167 (diff)
downloadgo-git-85a4efcc45312f022111907d82c5cc4ee3bdbb73.tar.gz
new srcd.works/go-git.v4 path
Diffstat (limited to 'plumbing/format/idxfile')
-rw-r--r--plumbing/format/idxfile/decoder.go4
-rw-r--r--plumbing/format/idxfile/decoder_test.go4
-rw-r--r--plumbing/format/idxfile/encoder.go2
-rw-r--r--plumbing/format/idxfile/encoder_test.go2
-rw-r--r--plumbing/format/idxfile/idxfile.go2
5 files changed, 7 insertions, 7 deletions
diff --git a/plumbing/format/idxfile/decoder.go b/plumbing/format/idxfile/decoder.go
index e3ffc4b..835978b 100644
--- a/plumbing/format/idxfile/decoder.go
+++ b/plumbing/format/idxfile/decoder.go
@@ -5,8 +5,8 @@ import (
"errors"
"io"
- "gopkg.in/src-d/go-git.v4/plumbing"
- "gopkg.in/src-d/go-git.v4/utils/binary"
+ "srcd.works/go-git.v4/plumbing"
+ "srcd.works/go-git.v4/utils/binary"
)
var (
diff --git a/plumbing/format/idxfile/decoder_test.go b/plumbing/format/idxfile/decoder_test.go
index 27aa59b..499762d 100644
--- a/plumbing/format/idxfile/decoder_test.go
+++ b/plumbing/format/idxfile/decoder_test.go
@@ -7,8 +7,8 @@ import (
. "gopkg.in/check.v1"
"github.com/src-d/go-git-fixtures"
- "gopkg.in/src-d/go-git.v4/plumbing/format/packfile"
- "gopkg.in/src-d/go-git.v4/storage/memory"
+ "srcd.works/go-git.v4/plumbing/format/packfile"
+ "srcd.works/go-git.v4/storage/memory"
)
func Test(t *testing.T) { TestingT(t) }
diff --git a/plumbing/format/idxfile/encoder.go b/plumbing/format/idxfile/encoder.go
index 164414a..2b0ef89 100644
--- a/plumbing/format/idxfile/encoder.go
+++ b/plumbing/format/idxfile/encoder.go
@@ -6,7 +6,7 @@ import (
"io"
"sort"
- "gopkg.in/src-d/go-git.v4/utils/binary"
+ "srcd.works/go-git.v4/utils/binary"
)
// An Encoder writes idx files to an output stream.
diff --git a/plumbing/format/idxfile/encoder_test.go b/plumbing/format/idxfile/encoder_test.go
index fab87b3..2804aee 100644
--- a/plumbing/format/idxfile/encoder_test.go
+++ b/plumbing/format/idxfile/encoder_test.go
@@ -6,7 +6,7 @@ import (
. "gopkg.in/check.v1"
"github.com/src-d/go-git-fixtures"
- "gopkg.in/src-d/go-git.v4/plumbing"
+ "srcd.works/go-git.v4/plumbing"
)
func (s *IdxfileSuite) TestEncode(c *C) {
diff --git a/plumbing/format/idxfile/idxfile.go b/plumbing/format/idxfile/idxfile.go
index 8329c23..ee014e5 100644
--- a/plumbing/format/idxfile/idxfile.go
+++ b/plumbing/format/idxfile/idxfile.go
@@ -1,6 +1,6 @@
package idxfile
-import "gopkg.in/src-d/go-git.v4/plumbing"
+import "srcd.works/go-git.v4/plumbing"
const (
// VersionSupported is the only idx version supported.