diff options
| author | ruki <[email protected]> | 2023-07-24 09:13:53 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-24 09:13:53 +0800 |
| commit | 9dc81de82d74021532baa648df4a0007acbb0d2f (patch) | |
| tree | 94f39f4e3b6ab11c1e1ed94c519680caa395f482 | |
| parent | 78817e3a666c1cfd37d3e9f01c7a6caad65e182f (diff) | |
Update runenvs.lua
| -rw-r--r-- | xmake/modules/private/action/run/runenvs.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/run/runenvs.lua b/xmake/modules/private/action/run/runenvs.lua index 1b041055d..9f1473335 100644 --- a/xmake/modules/private/action/run/runenvs.lua +++ b/xmake/modules/private/action/run/runenvs.lua @@ -79,7 +79,7 @@ end function join(addenvs, setenvs) local envs = os.joinenvs(addenvs and _flatten_envs(addenvs) or {}) if setenvs then - table.join2(envs, _flatten_envs(setenvs)) + envs = os.joinenvs(envs, _flatten_envs(setenvs)) end return envs end |
