remove two unused fields from sharedCache

ExecPath is only used within toolexecCmd, so make it a local variable.

GOMOD hasn't been used since we dropped the use of GOPRIVATE.
pull/850/head
Daniel Martí 4 months ago committed by Paul Scheduikat
parent b38f42da0f
commit 515358b18d

@ -577,8 +577,7 @@ This command wraps "go %s". Below is its help:
return nil, errJustExit(1) return nil, errJustExit(1)
} }
var err error execPath, err := os.Executable()
sharedCache.ExecPath, err = os.Executable()
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -597,7 +596,7 @@ This command wraps "go %s". Below is its help:
sharedCache.CacheDir = filepath.Join(parentDir, "garble") sharedCache.CacheDir = filepath.Join(parentDir, "garble")
} }
binaryBuildID, err := buildidOf(sharedCache.ExecPath) binaryBuildID, err := buildidOf(execPath)
if err != nil { if err != nil {
return nil, err return nil, err
} }
@ -643,7 +642,7 @@ This command wraps "go %s". Below is its help:
// We can add extra flags to the end of the same -toolexec argument. // We can add extra flags to the end of the same -toolexec argument.
var toolexecFlag strings.Builder var toolexecFlag strings.Builder
toolexecFlag.WriteString("-toolexec=") toolexecFlag.WriteString("-toolexec=")
quotedExecPath, err := cmdgoQuotedJoin([]string{sharedCache.ExecPath}) quotedExecPath, err := cmdgoQuotedJoin([]string{execPath})
if err != nil { if err != nil {
// Can only happen if the absolute path to the garble binary contains // Can only happen if the absolute path to the garble binary contains
// both single and double quotes. Seems extremely unlikely. // both single and double quotes. Seems extremely unlikely.

@ -30,7 +30,6 @@ import (
// store it into a temporary file via gob encoding, and then reuse that file // store it into a temporary file via gob encoding, and then reuse that file
// in each of the garble toolexec sub-processes. // in each of the garble toolexec sub-processes.
type sharedCacheType struct { type sharedCacheType struct {
ExecPath string // absolute path to the garble binary being used
ForwardBuildFlags []string // build flags fed to the original "garble ..." command ForwardBuildFlags []string // build flags fed to the original "garble ..." command
CacheDir string // absolute path to the GARBLE_CACHE directory being used CacheDir string // absolute path to the GARBLE_CACHE directory being used
@ -63,7 +62,6 @@ type sharedCacheType struct {
GOOS string // the GOOS build target GOOS string // the GOOS build target
GOARCH string // the GOARCH build target GOARCH string // the GOARCH build target
GOMOD string
GOVERSION string GOVERSION string
GOROOT string GOROOT string
} }

Loading…
Cancel
Save