diff --git a/doc/go1.15.html b/doc/go1.15.html index 9d10092ffa..97479d1537 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -78,6 +78,26 @@ TODO directory of each individual test).

+

Module cache

+ +

+ The location of the module cache may now be set with + the GOMODCACHE environment variable. The default value of + GOMODCACHE is GOPATH[0]/pkg/mod, the location of the + module cache before this change. +

+ +

+ A workaround is now available for Windows "Access is denied" errors in + go commands that access the module cache, caused by external + programs concurrently scanning the file system (see + issue #36568). The workaround is + not enabled by default because it is not safe to use when Go versions lower + than 1.14.2 and 1.13.10 are running concurrently with the same module cache. + It can be enabled by explictly setting the environment variable + GODEBUG=modcacheunzipinplace=1. +

+

Runtime