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:
parent
4119f3b80d
commit
5635645200
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue