mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

`go install` is the recommended way to build and install packages in module mode. `go get` should be used with the -d flag to adjust the current module's dependencies without building packages, and use of `go get` to build and install packages is deprecated. In a future release, the -d flag will always be enabled. Refer to https://go.dev/doc/go1.16. Signed-off-by: Benjamin Wang <wachao@vmware.com>