summaryrefslogtreecommitdiff
path: root/xmake/rules/xcode/application
diff options
context:
space:
mode:
authorSirLynix <[email protected]>2023-07-21 17:40:20 +0200
committerSirLynix <[email protected]>2023-07-21 17:40:20 +0200
commit7ffdabc0d2a93615ab8ec83b153e7f48854aceea (patch)
treedb4b532946914fb246d91d7f22ce0317d852b999 /xmake/rules/xcode/application
parent56779b7e083536109d9008059990cff694e01a77 (diff)
Fixes
Diffstat (limited to 'xmake/rules/xcode/application')
-rw-r--r--xmake/rules/xcode/application/run.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/xcode/application/run.lua b/xmake/rules/xcode/application/run.lua
index 5f7d1585d..9859321bc 100644
--- a/xmake/rules/xcode/application/run.lua
+++ b/xmake/rules/xcode/application/run.lua
@@ -44,7 +44,7 @@ function _run_on_macosx(target, opt)
if option.get("debug") then
debugger.run(targetfile, option.get("arguments"), {addrunenvs = addrunenvs, setrunenvs = setrunenvs})
else
- os.execv(targetfile, option.get("arguments"), {envs = runenvs.join()})
+ os.execv(targetfile, option.get("arguments"), {envs = runenvs.join(addrunenvs, setrunenvs)})
end
-- restore the previous directory