Fix: GITHUB_PATH should prepend (#690)

* GITHUB_PATH is prepend

https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path

* Check for replacing system binaries

Co-authored-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2021-05-18 09:22:39 -04:00
committed by GitHub
parent 38f6dfb49a
commit 29ea8cfc4e
2 changed files with 23 additions and 3 deletions

View File

@@ -399,7 +399,7 @@ func (cr *containerReference) extractPath(env *map[string]string) common.Executo
s := bufio.NewScanner(reader)
for s.Scan() {
line := s.Text()
localEnv["PATH"] = fmt.Sprintf("%s:%s", localEnv["PATH"], line)
localEnv["PATH"] = fmt.Sprintf("%s:%s", line, localEnv["PATH"])
}
env = &localEnv