From 826c230a40e1c9d74e359b1c2597ee691d5df6f2 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Thu, 7 Nov 2013 18:45:40 +0530 Subject: [PATCH] Update README.md to include updatedeps target When new dependencies are included builds on your localrepo will fail until you have all the latest dependencies in the GOPATH. After doing updatedeps, make will generate the packer binary. Signed-off-by: Prasanna Santhanam --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ac6817aef..35bff5b79 100644 --- a/README.md +++ b/README.md @@ -93,3 +93,6 @@ This will run tests for Packer core along with all the core builders and command If you make any changes to the code, run `make format` in order to automatically format the code according to Go standards. + +When new dependencies are added to packer you can use `make updatedeps` to +get the latest and subsequently use `make` to compile and generate the `packer` binary.