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:
@@ -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
|
||||
|
Reference in New Issue
Block a user