Skip to content

Commit f7d4d71

Browse files
committed
fix travis
1 parent 850ca83 commit f7d4d71

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,14 @@ go:
77
matrix:
88
allow_failures:
99
- go: tip
10+
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
16+
- go get -v -t ./...
17+
18+
script:
19+
- cd $GOPATH/src/srcd.works/go-billy.v1
20+
- go test -v ./...

os/os.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Package os provides a billy filesystem for the OS.
2-
package os // import "srcd.works/go-billy.v1/memory"
2+
package os // import "srcd.works/go-billy.v1/os"
33

44
import (
55
"io/ioutil"

0 commit comments

Comments
 (0)