You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by pd...@apache.org on 2018/08/21 18:45:09 UTC

[incubator-openwhisk-wskdeploy] branch master updated: Add `go get` to populate the vendor file (#967)

This is an automated email from the ASF dual-hosted git repository.

pdesai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git


The following commit(s) were added to refs/heads/master by this push:
     new a550d9f  Add `go get` to populate the vendor file (#967)
a550d9f is described below

commit a550d9f172c553db6d8b68203ea6e1fbcae7cace
Author: Justin Halsall <Ju...@users.noreply.github.com>
AuthorDate: Tue Aug 21 14:45:06 2018 -0400

    Add `go get` to populate the vendor file (#967)
    
    * Add go get to populate the vendor file
    
    * Use dependency manager in Readme
---
 README.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/README.md b/README.md
index 4df08c5..4b2cac5 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,7 @@ Once your environment is setup, download `wskdeploy` and its dependencies:
 ```sh
 $ cd $GOPATH
 $ go get github.com/apache/incubator-openwhisk-wskdeploy  # see known issues below if you get an error
+$ go get github.com/tools/godep # get the dependency manager
 ```
 
 ### Build the binary
@@ -64,6 +65,7 @@ $ go get github.com/apache/incubator-openwhisk-wskdeploy  # see known issues bel
 Use the Go utility to build the ```wskdeploy``` binary as follows:
 ```sh
 $ cd src/github.com/apache/incubator-openwhisk-wskdeploy/
+$ godep restore
 $ go build -o wskdeploy
 ```