sops icon indicating copy to clipboard operation
sops copied to clipboard

Update install instructions at `go.mozilla.org`

Open smoyer64 opened this issue 2 years ago • 1 comments

The installation instructions at https://go.mozilla.org/sops states that SOPS installation should be performed using:

go get -u go.mozilla.org/sops/cmd/sops

The go get command has been deprecated for installing binaries (and can lead to dependency issues) so the correct installation command is now:

go install go.mozilla.org/sops/v3/cmd/sops@latest

or for a specific version:

go install go.mozilla.org/sops/v3/cmd/[email protected]

As an aside, it would be nice to reference this installation method in the README - for those of us with Go already installed, it's simpler than downloading the binary, creating sym-links and setting executable flags.

smoyer64 avatar May 09 '22 13:05 smoyer64

Hi, I would like to contribute on this issue . Could you please mention/tag the exact location where breakdown needs to be fixed .

Amod02-prog avatar Sep 11 '22 19:09 Amod02-prog