summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/core/base/os.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/os.lua b/xmake/core/base/os.lua
index ed4dbe1a6..32f046ec0 100644
--- a/xmake/core/base/os.lua
+++ b/xmake/core/base/os.lua
@@ -703,7 +703,7 @@ function os.execv(program, argv, opt)
end
-- init open options
- local openopt = {envs = envs, stdout = opt.stdout, stderr = opt.stderr, curdir = opt.curdir}
+ local openopt = {envs = envs, stdout = opt.stdout, stderr = opt.stderr, curdir = opt.curdir, detach = opt.detach}
-- open command
local ok = -1