From ae82b3618f00b880b21507b325dd3158891d2731 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Mon, 17 Jul 2023 10:32:35 -0400 Subject: [PATCH] drop -d flag in go get command (it's always on as of https://go.dev/doc/go1.18#go-get) --- MinorReleases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinorReleases.md b/MinorReleases.md index 267b1a60..622d1d2c 100644 --- a/MinorReleases.md +++ b/MinorReleases.md @@ -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.