From b6e9e95bd75993c3260e5f53aba9ba40127789e5 Mon Sep 17 00:00:00 2001 From: opxyc Date: Sat, 23 Oct 2021 20:58:59 +0530 Subject: [PATCH] 'go get' to 'go install' --- cobra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cobra/README.md b/cobra/README.md index dcaf0c5f..16c8b1ff 100644 --- a/cobra/README.md +++ b/cobra/README.md @@ -5,7 +5,7 @@ commands you want. It's the easiest way to incorporate Cobra into your applicati In order to use the cobra command, compile it using the following command: - go get github.com/spf13/cobra/cobra + go install github.com/spf13/cobra/cobra@latest This will create the cobra executable under your `$GOPATH/bin` directory.