Files
velero/site/docs/v0.7.1/vendoring-dependencies.md
Lee Springer d995018a3e add velero.io site content, move docs to under site/docs (#1489)
* Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Restore main.go to original location

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to footer

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to homepage links

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Content updates

Signed-off-by: Lee Springer <lee@smalltalk.agency>
2019-05-17 10:56:03 -07:00

587 B

Vendoring dependencies

Overview

We are using dep to manage dependencies. You can install it by running

go get -u github.com/golang/dep/cmd/dep

Dep currently pulls in a bit more than we'd like, so we have created a script to remove these extra files: hack/dep-save.sh.

Adding a new dependency

Run hack/dep-save.sh. If you want to see verbose output, you can append -v as in hack/dep-save.sh -v.

Updating an existing dependency

Run hack/dep-save.sh -update <pkg> [<pkg> ...] to update one or more dependencies.