Skip to content

Commit 0f46684

Browse files
authored
docs: use go install to install build-lambda-zip. (#464)
go 1.18 removed the ability to use `go get` to install binaries. we should use `go install` instead. fixes #463
1 parent 4c09e84 commit 0f46684

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ Windows developers may have trouble producing a zip file that marks the binary a
5858

5959
Get the tool
6060
``` shell
61-
set GO111MODULE=on
62-
go.exe get -u github.com/aws/aws-lambda-go/cmd/build-lambda-zip
61+
go.exe install github.com/aws/aws-lambda-go/cmd/build-lambda-zip@latest
6362
```
6463

6564
Use the tool from your `GOPATH`. If you have a default installation of Go, the tool will be in `%USERPROFILE%\Go\bin`.

0 commit comments

Comments
 (0)