summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorTyler Cipriani <tcipriani@wikimedia.org>2018-11-02 09:40:58 -0600
committerTyler Cipriani <tcipriani@wikimedia.org>2018-12-10 17:33:15 -0700
commit56e830f6417fe1ebda1bdc2cf7810dcccd9a7da6 (patch)
treea081badcc905a516c3421f9534555fe916b961e3 /CONTRIBUTING.md
parent6597c943b6af809cc30e80070ad42953cab05dc4 (diff)
downloadblubber-56e830f6417fe1ebda1bdc2cf7810dcccd9a7da6.tar.gz
Use JSON as canonical config format
Uses the github.com/ghodss/yaml library to convert YAML to JSON before unmarshaling for the purposes of supporting YAML and JSON input while converting to only support JSON internally. Bug: T207694 Change-Id: I00668014907e9ea54917f5d5067cac08d0668053
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d9214a2..e6b68b3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -51,13 +51,13 @@ at `localhost:9999/pkg/gerrit.wikimedia.org/r/blubber`.
Dealing with Go project dependencies is kind of a moving target at the moment,
but for now we've opted to commit a minimal `vendor` directory which contains
all the required packages. It has been automatically populated by `dep
-ensure && dep prune` according to our `Gopkg.toml` and `Gopkg.lock` files.
+ensure` according to our `Gopkg.toml` and `Gopkg.lock` files.
If you're not making any changes to `Gopkg.toml`, adding, updating, or
removing dependencies, you should already be good to go.
If you do update `Gopkg.toml` to add, update, or remove a dependency, simply
-run `dep ensure && dep prune` after doing so, and commit the resulting
+run `dep ensure` after doing so, and commit the resulting
`vendor` directory changes.
## Running tests and linters