diff options
| author | ruki <[email protected]> | 2019-08-17 11:19:52 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-08-17 11:19:52 +0800 |
| commit | 4bc7a9e0ee3be894bcb17d9bc188d344d4faee52 (patch) | |
| tree | 7ddce5991c63add867ebfe6323c3622a60694164 | |
| parent | d5b72e56e42746b7e8bae07d3a4070bd2721829b (diff) | |
fix process open
| -rw-r--r-- | xmake/core/base/process.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/process.lua b/xmake/core/base/process.lua index 0541f98c6..cf5f3744e 100644 --- a/xmake/core/base/process.lua +++ b/xmake/core/base/process.lua @@ -115,7 +115,7 @@ end -- @return the subprocess -- function process.openv(shellname, argv, opt) - local proc = process._open(shellname, argv, opt) + local proc = process._openv(shellname, argv, opt) if proc then return _subprocess.new(path.filename(shellname), proc) else |
