-
Notifications
You must be signed in to change notification settings - Fork 17.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-branch.go1.17] cmd/dist: consistently set PWD when executing…
… a command in a different directory Fixes #52995 Updates #33598 Change-Id: If0de906ffa2fcc83bb2a90f9e80a5b29d7667398 Reviewed-on: https://go-review.googlesource.com/c/go/+/353449 Trust: Bryan C. Mills <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]> (cherry picked from commit c035d82) Reviewed-on: https://go-review.googlesource.com/c/go/+/407881 Reviewed-by: Heschi Kreinick <[email protected]> Run-TryBot: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
- Loading branch information
Showing
3 changed files
with
80 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2021 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package main | ||
|
||
import ( | ||
"os" | ||
"os/exec" | ||
"strings" | ||
) | ||
|
||
// setDir sets cmd.Dir to dir, and also adds PWD=dir to cmd's environment. | ||
func setDir(cmd *exec.Cmd, dir string) { | ||
cmd.Dir = dir | ||
setEnv(cmd, "PWD", dir) | ||
} | ||
|
||
// setEnv sets cmd.Env so that key = value. | ||
// | ||
// It first removes any existing values for key, so it is safe to call | ||
// even from within cmdbootstrap. | ||
func setEnv(cmd *exec.Cmd, key, value string) { | ||
kv := key + "=" + value | ||
if cmd.Env == nil { | ||
cmd.Env = os.Environ() | ||
} | ||
|
||
prefix := kv[:len(key)+1] | ||
for i, entry := range cmd.Env { | ||
if strings.HasPrefix(entry, prefix) { | ||
cmd.Env[i] = kv | ||
return | ||
} | ||
} | ||
|
||
cmd.Env = append(cmd.Env, kv) | ||
} | ||
|
||
// unsetEnv sets cmd.Env so that key is not present in the environment. | ||
func unsetEnv(cmd *exec.Cmd, key string) { | ||
if cmd.Env == nil { | ||
cmd.Env = os.Environ() | ||
} | ||
|
||
prefix := key + "=" | ||
for i, entry := range cmd.Env { | ||
if strings.HasPrefix(entry, prefix) { | ||
cmd.Env = append(cmd.Env[:i], cmd.Env[i+1:]...) | ||
return | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters