Add --quick to glide up

This commit is contained in:
emile 2016-01-27 11:00:13 +01:00
parent 81e9fdfe75
commit ec2d7efe0e
No known key found for this signature in database
GPG key ID: D808B4C167352E59
3 changed files with 4 additions and 4 deletions

View file

@ -115,14 +115,14 @@ traefik*
The idea behind `glide` is the following :
- when checkout(ing) a project, **run `glide up`** to install
- when checkout(ing) a project, **run `glide up --quick`** to install
(`go get …`) the dependencies in the `GOPATH`.
- if you need another dependency, import and use it in
the source, and **run `glide get github.com/Masterminds/cookoo`** to save it in
`vendor` and add it to your `glide.yaml`.
```bash
$ glide up --update-vendored
$ glide up --quick
# generate
$ go generate
# Simple go build