diff options
| author | ruki <[email protected]> | 2023-01-05 17:18:11 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-05 17:18:11 +0800 |
| commit | 46615017d4b095831546cf887e42daa368e1e90c (patch) | |
| tree | 13b52ff1ba4960e698150c1263ad89d09432f53e | |
| parent | 934e6225195dd19cfdcffe8b7717f57018aa95e1 (diff) | |
Update main.lua
| -rw-r--r-- | xmake/actions/run/main.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xmake/actions/run/main.lua b/xmake/actions/run/main.lua index f7d665ab2..e730bf246 100644 --- a/xmake/actions/run/main.lua +++ b/xmake/actions/run/main.lua @@ -54,8 +54,7 @@ function _do_run_target(target) end -- get run arguments - local args = {} - table.join2(args, option.get("arguments") or target:get("runargs")) + local args = table.wrap(option.get("arguments") or target:get("runargs")) -- debugging? if option.get("debug") then |
