Skip to content
Snippets Groups Projects
Verified Commit a33bfa3e authored by Sam Whited's avatar Sam Whited
Browse files

Fix Go dependency install instructions in README


Prior to Go 1.17 the "go get" command was overloaded to install library
dependencies and applications. As of Go 1.17 installing applications
with it results in a warning, and as of Go 1.18 it will no longer be
used to install applications.

This patch updates the readme to use "go install" instead.

TL;DR — "go get" updates module dependencies, "go install" builds
        binaries and sticks them in $GOBIN.

Signed-off-by: default avatarSam Whited <sam@samwhited.com>
parent 87e1d7b1
No related branches found
No related tags found
1 merge request!53Fix Go dependency install instructions in README
Pipeline #79535 passed