File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,26 @@ <h4 id="go-flag-parsing">Flag parsing</h4>
78
78
directory of each individual test).
79
79
</ p >
80
80
81
+ < h4 id ="module-cache "> Module cache</ h4 >
82
+
83
+ < p > <!-- https://golang.org/cl/219538 -->
84
+ The location of the module cache may now be set with
85
+ the < code > GOMODCACHE</ code > environment variable. The default value of
86
+ < code > GOMODCACHE</ code > is < code > GOPATH[0]/pkg/mod</ code > , the location of the
87
+ module cache before this change.
88
+ </ p >
89
+
90
+ < p > <!-- https://golang.org/cl/221157 -->
91
+ A workaround is now available for Windows "Access is denied" errors in
92
+ < code > go</ code > commands that access the module cache, caused by external
93
+ programs concurrently scanning the file system (see
94
+ < a href ="https://golang.org/issue/36568 "> issue #36568</ a > ). The workaround is
95
+ not enabled by default because it is not safe to use when Go versions lower
96
+ than 1.14.2 and 1.13.10 are running concurrently with the same module cache.
97
+ It can be enabled by explictly setting the environment variable
98
+ < code > GODEBUG=modcacheunzipinplace=1</ code > .
99
+ </ p >
100
+
81
101
< h2 id ="runtime "> Runtime</ h2 >
82
102
83
103
< p >
You can’t perform that action at this time.
0 commit comments