File tree Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Expand file tree Collapse file tree 7 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,14 @@ matrix:
9
9
- go : tip
10
10
11
11
install :
12
- - rm -rf $GOPATH/src/srcd.works
13
- - mkdir -p $GOPATH/src/srcd.works
14
- - ln -s $PWD $GOPATH/src/srcd.works /go-billy.v1
15
- - cd $GOPATH/src/srcd.works /go-billy.v1
12
+ - rm -rf $GOPATH/src/gopkg.in/src-d
13
+ - mkdir -p $GOPATH/src/gopkg.in/src-d
14
+ - ln -s $PWD $GOPATH/src/gopkg.in/src-d /go-billy.v1
15
+ - cd $GOPATH/src/gopkg.in/src-d /go-billy.v1
16
16
- go get -v -t ./...
17
17
18
18
script :
19
- - cd $GOPATH/src/srcd.works /go-billy.v1
19
+ - cd $GOPATH/src/gopkg.in/src-d /go-billy.v1
20
20
- go test -v ./...
21
21
- make test-coverage
22
22
Original file line number Diff line number Diff line change 1
- # go-billy [ ![ GoDoc] ( https://godoc.org/srcd.works/ go-billy.v1?status.svg )] ( https://godoc.org/srcd.works /go-billy.v1 ) [ ![ Build Status] ( https://travis-ci.org/src-d/go-billy.svg )] ( https://travis-ci.org/src-d/go-billy ) [ ![ codebeat badge] ( https://codebeat.co/badges/03bdec03-b477-4472-bbe3-b552e3799174 )] ( https://codebeat.co/projects/github-com-src-d-go-billy )
1
+ # go-billy [ ![ GoDoc] ( https://godoc.org/gopkg.in/src-d/ go-billy.v1?status.svg )] ( https://godoc.org/gopkg.in/src-d /go-billy.v1 ) [ ![ Build Status] ( https://travis-ci.org/src-d/go-billy.svg )] ( https://travis-ci.org/src-d/go-billy ) [ ![ codebeat badge] ( https://codebeat.co/badges/03bdec03-b477-4472-bbe3-b552e3799174 )] ( https://codebeat.co/projects/github-com-src-d-go-billy )
2
2
3
3
An interface to abstract several storages.
4
4
@@ -8,7 +8,7 @@ This library was extracted from
8
8
## Installation
9
9
10
10
``` go
11
- go get -u srcd. works /go -billy.v1 /...
11
+ go get -u gopkg. in /src-d /go -billy.v1 /...
12
12
```
13
13
14
14
## Why billy?
Original file line number Diff line number Diff line change 1
1
// Package memfs provides a billy filesystem base on memory.
2
- package memfs // import "srcd.works /go-billy.v1/memfs"
2
+ package memfs // import "gopkg.in/src-d /go-billy.v1/memfs"
3
3
4
4
import (
5
5
"errors"
@@ -11,7 +11,7 @@ import (
11
11
"strings"
12
12
"time"
13
13
14
- "srcd.works /go-billy.v1"
14
+ "gopkg.in/src-d /go-billy.v1"
15
15
)
16
16
17
17
const separator = '/'
Original file line number Diff line number Diff line change 4
4
"testing"
5
5
6
6
. "gopkg.in/check.v1"
7
- "srcd.works /go-billy.v1/test"
7
+ "gopkg.in/src-d /go-billy.v1/test"
8
8
)
9
9
10
10
func Test (t * testing.T ) { TestingT (t ) }
Original file line number Diff line number Diff line change 1
1
// Package os provides a billy filesystem for the OS.
2
- package osfs // import "srcd.works /go-billy.v1/osfs"
2
+ package osfs // import "gopkg.in/src-d /go-billy.v1/osfs"
3
3
4
4
import (
5
5
"io/ioutil"
6
6
"os"
7
7
"path"
8
8
"path/filepath"
9
9
10
- "srcd.works /go-billy.v1"
10
+ "gopkg.in/src-d /go-billy.v1"
11
11
)
12
12
13
13
const (
Original file line number Diff line number Diff line change 7
7
"testing"
8
8
9
9
. "gopkg.in/check.v1"
10
- "srcd.works /go-billy.v1/test"
10
+ "gopkg.in/src-d /go-billy.v1/test"
11
11
)
12
12
13
13
func Test (t * testing.T ) { TestingT (t ) }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"testing"
11
11
12
12
. "gopkg.in/check.v1"
13
- . "srcd.works /go-billy.v1"
13
+ . "gopkg.in/src-d /go-billy.v1"
14
14
)
15
15
16
16
func Test (t * testing.T ) { TestingT (t ) }
You can’t perform that action at this time.
0 commit comments