diff options
| author | ruki <[email protected]> | 2019-08-16 22:38:34 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-08-16 17:49:18 +0800 |
| commit | 7bf7eabafb4c7f4bc36bd3964a914358cd7bb46c (patch) | |
| tree | 95ab3093f5363a3715b6456a48302329ad47f819 /xmake/core/base | |
| parent | 524b4d10954233517fd25374b36c3e4080b29113 (diff) | |
improve process.openv
Diffstat (limited to 'xmake/core/base')
| -rw-r--r-- | xmake/core/base/os.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua index b8a81c8bd..18dc682da 100644 --- a/xmake/core/base/os.lua +++ b/xmake/core/base/os.lua @@ -626,7 +626,7 @@ function os.execv(program, argv, opt) -- open command local ok = -1 - local proc = process.openv(filename, argv, opt.stdout, opt.stderr, envs) + local proc = process.openv(filename, argv, {outpath = opt.stdout, errpath = opt.stderr, envs = envs}) if proc ~= nil then -- wait process |
