From cb51c97a4e2e17b9fe3514050baf1b2773d071f2 Mon Sep 17 00:00:00 2001 From: Andrew Au Date: Wed, 29 Jun 2016 21:34:17 -0700 Subject: [PATCH] Include instruction for building the cobra tool in README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 34c79eb8..b338a0e4 100644 --- a/README.md +++ b/README.md @@ -172,6 +172,12 @@ func main() { Cobra provides its own program that will create your application and add any commands you want. It's the easiest way to incorporate Cobra into your application. +In order to use the cobra command, compile it using the following command: + + > go install github.com/spf13/cobra/cobra + +This will create the cobra executable under your go path bin directory! + ### cobra init The `cobra init [yourApp]` command will create your initial application code