*: remove glide from README & Dockerfile

This commit is contained in:
Jimmy Zelinskie
2017-12-29 17:12:17 -05:00
parent 5840cd3de1
commit e9d1e71276
2 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -77,18 +77,18 @@ $ $GOPATH/bin/chihaya --help
#### Reproducible Builds
Reproducible builds are handled by using [glide] to vendor dependencies.
Reproducible builds are handled by using [dep] to vendor dependencies.
```sh
$ mkdir chihaya && export GOPATH=$PWD/chihaya
$ git clone git@github.com:chihaya/chihaya.git $GOPATH/src/github.com/chihaya/chihaya
$ cd $GOPATH/src/github.com/chihaya/chihaya
$ glide install
$ dep ensure
$ go install github.com/chihaya/chihaya/cmd/...
$ $GOPATH/bin/chihaya --help
```
[glide]: https://glide.sh
[dep]: https://github.com/golang/dep
#### Docker
@@ -103,7 +103,7 @@ The following will run all tests and benchmarks.
Removing `-bench` will just run unit tests.
```sh
$ go test -bench $(glide novendor | grep -v contrib)
$ go test -bench $(go list ./...)
```
### Contributing