fix: don't override env (#1629)
This commit is contained in:
parent
34ab8150bf
commit
b0a5068f6d
1 changed files with 5 additions and 3 deletions
|
@ -186,9 +186,11 @@ func (rc *RunContext) startHostEnvironment() common.Executor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for _, env := range os.Environ() {
|
for _, env := range os.Environ() {
|
||||||
i := strings.Index(env, "=")
|
if k, v, ok := strings.Cut(env, "="); ok {
|
||||||
if i > 0 {
|
// don't override
|
||||||
rc.Env[env[0:i]] = env[i+1:]
|
if _, ok := rc.Env[k]; !ok {
|
||||||
|
rc.Env[k] = v
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue