We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 145e193 commit e684129Copy full SHA for e684129
src/README.vendor
@@ -41,13 +41,13 @@ The vendor directory may be updated with 'go mod vendor'.
41
A typical sequence might be:
42
43
cd src
44
- go get -m golang.org/x/net@latest
+ go get -d golang.org/x/net@latest
45
go mod tidy
46
go mod vendor
47
48
Use caution when passing '-u' to 'go get'. The '-u' flag updates
49
-modules providing all transitively imported packages, not just
50
-the target module.
+modules providing all transitively imported packages, not only
+the module providing the target package.
51
52
Note that 'go mod vendor' only copies packages that are transitively
53
imported by packages in the current module. If a new package is needed,
0 commit comments