diff options
Diffstat (limited to 'xmake/scripts/action/_run.lua')
| -rw-r--r-- | xmake/scripts/action/_run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/scripts/action/_run.lua b/xmake/scripts/action/_run.lua index c2b46ad9b..1a24874e0 100644 --- a/xmake/scripts/action/_run.lua +++ b/xmake/scripts/action/_run.lua @@ -82,7 +82,7 @@ function _run.done() end -- done - local ok = os.execute(string.format("%s %s", targetfile, table.concat(arguments))) + local ok = os.execute(string.format("%s %s", targetfile, table.concat(arguments, " "))) -- ok? return utils.ifelse(ok == 0, true, false) |
