Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cli-plugins: PluginRunCommand: use cmd.Environ instead of os.Environ
Commit 5011759 implemented a fix that caused the current environment to be discarded, using `os.Environ()`. On Windows, `os.Environ()` may produce an incorrect value for `PWD`, for which a new function was added in go1.19; - https://tip.golang.org/doc/go1.19#osexecpkgosexec - https://go-review.googlesource.com/c/go/+/401340 Replace the use of `os.Environ()` with `cmd.Environ()` to address that. Signed-off-by: Sebastiaan van Stijn <[email protected]>
- Loading branch information