diff options
Diffstat (limited to 'xmake/core/base/os.lua')
| -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 |
