Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update BUILDING doc for Go dependencies #168

Merged
merged 1 commit into from
Jun 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,11 @@ make build-windows

To remove all files not manged by git, run `make clean` (be careful!)

## Adding/updating dependencies
## Managing dependencies

Requires [dep](https://golang.github.io/dep/).
[Using Go Modules](https://blog.golang.org/using-go-modules) to manage dependencies.

Add new dependencies directly to `Gopkg.toml` and run `dep ensure`.

To update all dependencies, run `make update-deps`.

After doing any action above, please make sure to run `make fix-deps`,
which will fix some issue with how dependencies are resolved.

Please check in all changes in the `vendor/` directory.
To update or add new dependencies, run `go get <package name>`.

## Cutting a new release

Expand Down