We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c957084 commit 938ad55Copy full SHA for 938ad55
src/cmd/go/internal/work/exec.go
@@ -214,7 +214,7 @@ func (b *Builder) buildActionID(a *Action) cache.ActionID {
214
fmt.Fprintf(h, "module %s@%s\n", p.Module.Path, p.Module.Version)
215
}
216
if p.Module != nil {
217
- fmt.Fprintf(h, "go %s", p.Module.GoVersion)
+ fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
218
219
fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
220
fmt.Fprintf(h, "import %q\n", p.ImportPath)
0 commit comments