From e991c930d3244f3c0dbaed937aed3f0783bc7e42 Mon Sep 17 00:00:00 2001 From: Chanwit Kaewkasi Date: Sun, 15 Feb 2015 23:51:29 +0700 Subject: [PATCH] update godep save to also work with test dependencies Signed-off-by: Chanwit Kaewkasi --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ddec967eee..4ba9ffc606 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,7 +49,7 @@ go install To make sure other will not miss dependencies you've added to Swarm, you'll need to call `godep save` to make changes to the config file, `Godep/Godeps.json`. An important thing is that `godep` will replace the config file by the dependency information it learnt from your local machine. This step will mess the upstream config. So, changes to `Godep/Godeps.json` must be performed with care. ```sh -$GOBIN/godep save +$GOBIN/godep save ./... git diff # check what added or removed in Godep/Godeps.json # then manually add missing dependencies ```