Skip to content

Commit

Permalink
Change CONTRIBUTING.md to reference Go modules instead of dep
Browse files Browse the repository at this point in the history
  • Loading branch information
Joonas Bergius committed Nov 22, 2019
1 parent 1740ad8 commit 98c9973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In order for the pull request to get accepted the code must pass `gofmt`, `govet

## Dependency Management

This project uses [`dep`](https://github.com/golang/dep) for dependency management. Before pushing the code to GitHub, make sure your vendor directory is in sync by running `dep ensure` or otherwise CI will fail.
This project uses [`go modules`](https://github.com/golang/go/wiki/Modules) for dependency management.

## Testing

Expand All @@ -18,7 +18,7 @@ Unit tests can be run by invoking `make test-unit`. Integration and End-to-End t

The following Make targets can be used to build controllers:

* `all` runs code generation, `dep ensure`, builds `machine-controller`, `cluster-controller` and `clusterctl` binaries, as well as builds `machine-controller` and `cluster-controller` Docker images
* `all` runs code generation, builds `machine-controller`, `cluster-controller` and `clusterctl` binaries, as well as builds `machine-controller` and `cluster-controller` Docker images
* `compile` compiles `clusterctl`, `machine-controller` and `cluster-controller`, and stores them in the `./bin` directory
* `install` compiles `clusterctl`, `machine-controller` and `cluster-controller`, and stores them in the `$GOPTAH/bin` directory

Expand Down

0 comments on commit 98c9973

Please sign in to comment.