README: add info on running the tests
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
f51a3381de
commit
68a1a615b9
1 changed files with 17 additions and 3 deletions
20
README.md
20
README.md
|
@ -183,9 +183,23 @@ go get github.com/vbatts/go-mtree/cmd/gomtree
|
||||||
or
|
or
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone git://github.com/vbatts/go-mtree.git
|
git clone git://github.com/vbatts/go-mtree.git $GOPATH/src/github.com/vbatts/go-mtree
|
||||||
cd ./go-mtree/cmd/gomtree
|
cd $GOPATH/src/github.com/vbatts/go-mtree
|
||||||
go build .
|
go build ./cmd/gomtree
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
On Linux:
|
||||||
|
```bash
|
||||||
|
cd $GOPATH/src/github.com/vbatts/go-mtree
|
||||||
|
make
|
||||||
|
```
|
||||||
|
|
||||||
|
On FreeBSD:
|
||||||
|
```bash
|
||||||
|
cd $GOPATH/src/github.com/vbatts/go-mtree
|
||||||
|
gmake
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue