From 572dd4e51e4b5372aba0b999d7cd1c7257e27a02 Mon Sep 17 00:00:00 2001 From: morfeo8marc Date: Tue, 8 May 2018 18:50:56 +0200 Subject: [PATCH] contribution: add step to call dep ensure before contributing #524 Signed-off-by: morfeo8marc --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9da23c71..ae54dbb3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -61,6 +61,11 @@ The basics are as follows: All import paths should now work fine assuming that you've got the proper branch checked out. +3. Get all the needed gobot's dependencies each of them at their needed version. Gobot uses [dep (Dependency management for Go)](https://golang.github.io/dep/) to manage the project's dependencies. To get all the correct dependencies: + +* Install dep tool. Follow the dep [installation](https://golang.github.io/dep/docs/installation.html) instructions in case you don't have it already installed. +* `cd $GOPATH/src/gobot.io/x/gobot` +* `dep ensure` will fetch all the dependencies at their needed version. ## Landing Pull Requests (This is for committers only. If you are unsure whether you are a committer, you are not.)