aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland Shoemaker <roland@golang.org>2021-01-19 09:59:24 -0800
committerRoland Shoemaker <roland@golang.org>2021-01-21 19:15:21 +0000
commit3c2f11ba5b76cda35a5bedc9299833c649216b83 (patch)
treed0574aece810f0ac2815c6af669dcedc9c6f94cd
parent953d1feca9b21af075ad5fc8a3dad096d3ccc3a0 (diff)
downloadgo-3c2f11ba5b76cda35a5bedc9299833c649216b83.tar.gz
go-3c2f11ba5b76cda35a5bedc9299833c649216b83.zip
cmd/go: overwrite program name with full path
If the program path is resolved, replace the first argument of the exec.Cmd, which is the bare program name with the resolved path. Change-Id: I92cf5e6f4bb7c8fef9b59f5eab963f4e75b90d07 Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/957908 Reviewed-by: Katie Hockman <katiehockman@google.com> Reviewed-by: Russ Cox <rsc@google.com> Reviewed-by: Jay Conrod <jayconrod@google.com> Reviewed-on: https://go-review.googlesource.com/c/go/+/284784 Trust: Roland Shoemaker <roland@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Roland Shoemaker <roland@golang.org>
-rw-r--r--src/cmd/go/internal/work/exec.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/go/internal/work/exec.go b/src/cmd/go/internal/work/exec.go
index 16a4ebaa0f7..cacb4c05df8 100644
--- a/src/cmd/go/internal/work/exec.go
+++ b/src/cmd/go/internal/work/exec.go
@@ -2042,6 +2042,9 @@ func (b *Builder) runOut(a *Action, dir string, env []string, cmdargs ...interfa
var buf bytes.Buffer
cmd := exec.Command(cmdline[0], cmdline[1:]...)
+ if cmd.Path != "" {
+ cmd.Args[0] = cmd.Path
+ }
cmd.Stdout = &buf
cmd.Stderr = &buf
cleanup := passLongArgsInResponseFiles(cmd)