drop -d flag in go get command (it's always on as of https://go.dev/doc/go1.18#go-get)

Dmitri Shuralyov 2023-07-17 10:32:35 -04:00
parent c98b8955d4
commit ae82b3618f

@ -58,7 +58,7 @@ The Go standard library includes some generated files whose source of truth is o
2. In the main repository on the `release-branch.go1.x` branch, create a CL that pulls in the fix from the golang.org/x internal branch:
```
go get -d golang.org/x/repo@internal-branch.go1.x-vendor
go get golang.org/x/repo@internal-branch.go1.x-vendor
go mod tidy
go mod vendor
go generate -run=bundle std # If a bundled package needs regeneration.