1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-15 18:57:01 +00:00

Use PathListSeparator (#408)

In PR #406 I used PathSeparator and I should have used PathListSeparator.
 See: https://golang.org/pkg/os/#pkg-constants
This commit is contained in:
Wink Saville 2020-11-04 11:54:48 -08:00 committed by GitHub
parent 4119f3b80d
commit 5635645200

View file

@ -94,7 +94,7 @@ func (sc *StepContext) setupEnv() common.Executor {
if (rc.ExtraPath != nil) && (len(rc.ExtraPath) > 0) {
s := append(rc.ExtraPath, os.Getenv("PATH"))
env["PATH"] = strings.Join(s, string(os.PathSeparator))
env["PATH"] = strings.Join(s, string(os.PathListSeparator))
}
for k, v := range env {