diff options
| author | ruki <[email protected]> | 2015-06-15 22:48:05 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-06-15 22:48:05 +0800 |
| commit | 60bd22effb5664fefafabe69f5023301b6970e7b (patch) | |
| tree | 1becb00719df6d92334f8a6cca14e1358f3d3d4b /xmake/scripts/action/_run.lua | |
| parent | 5aa1e3e13876809ff14264429ad98fa3d5457b99 (diff) | |
fix run arguments bug
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) |
