Multiple GOPATH fix
This commit is contained in:
parent
f57619c0f1
commit
1238fa4318
1 changed files with 3 additions and 3 deletions
|
@ -8,14 +8,14 @@ Install
|
|||
|
||||
```sh
|
||||
$ go get -d github.com/nobonobo/unqlitego
|
||||
$ make -C $GOPATH/src/github.com/nobonobo/unqlitego install
|
||||
$ make -C ${GOPATH/:*/}/src/github.com/nobonobo/unqlitego install
|
||||
```
|
||||
|
||||
Test
|
||||
---------
|
||||
```sh
|
||||
$ go get github.com/r7kamura/gospel
|
||||
$ make -C $GOPATH/src/github.com/nobonobo/unqlitego test
|
||||
$ make -C ${GOPATH/:*/}/src/github.com/nobonobo/unqlitego test
|
||||
```
|
||||
|
||||
Benchmark
|
||||
|
@ -23,7 +23,7 @@ Benchmark
|
|||
|
||||
```sh
|
||||
$ go get github.com/r7kamura/gospel
|
||||
$ cd $GOPATH/src/github.com/nobonobo/unqlitego
|
||||
$ cd ${GOPATH/:*/}/src/github.com/nobonobo/unqlitego
|
||||
$ go test -bench Bench*
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue