From af8f94e3c5885647d6f85d2d5227b5fc6b637c52 Mon Sep 17 00:00:00 2001 From: Jonathan Amsterdam Date: Tue, 11 Jul 2023 17:12:33 -0400 Subject: [PATCH] src/README.vendor: s/latest/master/ Update the README to specify the module query "@master" instead of "@latest". Vendoring the highest tagged version is unlikely to be right. Usually one wants to vendor the module at HEAD. Change-Id: Id00d23523a13fd3dcd73d6eacefdf50bcdbfa26e Reviewed-on: https://go-review.googlesource.com/c/go/+/508823 TryBot-Result: Gopher Robot Run-TryBot: Jonathan Amsterdam Reviewed-by: Bryan Mills --- src/README.vendor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/README.vendor b/src/README.vendor index 4b6bdb8e74..43821b2900 100644 --- a/src/README.vendor +++ b/src/README.vendor @@ -38,7 +38,7 @@ The vendor directory may be updated with 'go mod vendor'. A typical sequence might be: cd src - go get golang.org/x/net@latest + go get golang.org/x/net@master go mod tidy go mod vendor