diff --git a/README.md b/README.md index e800482..307fd86 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # garble - GO111MODULE=on go get mvdan.cc/garble + go install mvdan.cc/garble@latest Obfuscate Go code by wrapping the Go toolchain. Requires Go 1.16 or later. @@ -44,7 +44,7 @@ Note that commands like `garble build` will use the `go` version found in your and set up `$PATH` with them. For example, for Go 1.16.1: ```sh -$ go get golang.org/dl/go1.16.1 +$ go install golang.org/dl/go1.16.1@latest $ go1.16.1 download $ PATH=$(go1.16.1 env GOROOT)/bin:${PATH} garble build ``` diff --git a/shared.go b/shared.go index d4f20f5..d250519 100644 --- a/shared.go +++ b/shared.go @@ -30,12 +30,12 @@ type sharedCache struct { // useful for type checking of the packages as we obfuscate them. ListedPackages map[string]*listedPackage - // We can't rely on the module version to exist, because it's - // missing in local builds without 'go get'. + // We can't rely on the module version to exist, + // because it's missing in local builds without 'go install'. // For now, use 'go tool buildid' on the garble binary. // Just like Go's own cache, we use hex-encoded sha256 sums. - // Once https://github.com/golang/go/issues/37475 is fixed, we - // can likely just use that. + // Once https://github.com/golang/go/issues/37475 is fixed, + // we can likely just use that. BinaryContentID []byte // From "go env", primarily.