mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-03 11:45:20 +00:00
- Add pruning settings to Gopkg.toml - Update vendoring deps doc to point to dep installation instructions and to use dep instead of hack/dep-save.sh - Remove hack/dep-save.sh Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
476 B
476 B
Vendoring dependencies
Overview
We are using dep to manage dependencies. You can install it by following these instructions.
Adding a new dependency
Run dep ensure. If you want to see verbose output, you can append -v as in
dep ensure -v.
Updating an existing dependency
Run dep ensure -update <pkg> [<pkg> ...] to update one or more dependencies.