gopasspw / git-credential-gopass

Gopass git-credentials helper
MIT License
48 stars 9 forks source link

Fixed installation instructions #55

Closed sandrogauci closed 2 years ago

sandrogauci commented 2 years ago

go get -u is no longer the way to do this as of Go 1.17. Replaced instructions to use go install.

Background:

    'go get' is no longer supported outside a module.
    To build and install a command, use 'go install' with a version,
    like 'go install example.com/cmd@latest'
    For more information, see https://golang.org/doc/go-get-install-deprecation
    or run 'go help get' or 'go help install'.