diff options
| -rw-r--r-- | xmake/actions/run/main.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/actions/run/main.lua b/xmake/actions/run/main.lua index 5c40fa801..f7d665ab2 100644 --- a/xmake/actions/run/main.lua +++ b/xmake/actions/run/main.lua @@ -54,7 +54,8 @@ function _do_run_target(target) end -- get run arguments - local args = option.get("arguments") or target:get("runargs") + local args = {} + table.join2(args, option.get("arguments") or target:get("runargs")) -- debugging? if option.get("debug") then |
