File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import (
11
11
"hash"
12
12
"io"
13
13
"os"
14
- "runtime"
15
14
"strings"
16
15
"sync"
17
16
)
@@ -37,13 +36,7 @@ type Hash struct {
37
36
// of other versions. This salt will result in additional ActionID files
38
37
// in the cache, but not additional copies of the large output files,
39
38
// which are still addressed by unsalted SHA256.
40
- //
41
- // We strip any GOEXPERIMENTs the go tool was built with from this
42
- // version string on the assumption that they shouldn't affect go tool
43
- // execution. This allows bootstrapping to converge faster: dist builds
44
- // go_bootstrap without any experiments, so by stripping experiments
45
- // go_bootstrap and the final go binary will use the same salt.
46
- var hashSalt = []byte (stripExperiment (runtime .Version ()))
39
+ var hashSalt []byte
47
40
48
41
// stripExperiment strips any GOEXPERIMENT configuration from the Go
49
42
// version string.
You can’t perform that action at this time.
0 commit comments