From 495a287f0bd9d3294b9ef7533dc8165527b29c0e Mon Sep 17 00:00:00 2001
From: Jay Conrod
+ 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
.
+
-- 2.48.1