@@ -1019,9 +1019,6 @@ As of Go 1.6 they are on by default. To turn them off, set
1019
1019
GO15VENDOREXPERIMENT=0. In Go 1.7, the environment
1020
1020
variable will stop having any effect.
1021
1021
1022
- The vendoring semantics are an experiment, and they may change
1023
- in future releases. Once settled, they will be on by default.
1024
-
1025
1022
See https://golang.org/s/go15vendor for details.
1026
1023
1027
1024
@@ -1089,7 +1086,7 @@ Special-purpose environment variables:
1089
1086
File names in stack traces are rewritten from GOROOT to
1090
1087
GOROOT_FINAL.
1091
1088
GO15VENDOREXPERIMENT
1092
- Set to 1 to enable the Go 1.5 vendoring experiment .
1089
+ Set to 0 to disable vendoring semantics .
1093
1090
GO_EXTLINK_ENABLED
1094
1091
Whether the linker should use external linking mode
1095
1092
when using -linkmode=auto with code that uses cgo.
@@ -1265,10 +1262,10 @@ unless it is being referred to by that import path. In this way, import comments
1265
1262
let package authors make sure the custom import path is used and not a
1266
1263
direct path to the underlying code hosting site.
1267
1264
1268
- If the vendoring experiment is enabled (see 'go help gopath'),
1269
- then import path checking is disabled for code found within vendor trees.
1270
- This makes it possible to copy code into alternate locations in vendor trees
1271
- without needing to update import comments.
1265
+ If vendoring is enabled (see 'go help gopath'), then import path checking is
1266
+ disabled for code found within vendor trees. This makes it possible to copy
1267
+ code into alternate locations in vendor trees without needing to update import
1268
+ comments.
1272
1269
1273
1270
See https://golang.org/s/go14customimport for details.
1274
1271
0 commit comments