summaryrefslogtreecommitdiff
path: root/xmake/modules/private/utils/batchcmds.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2022-11-05 00:42:04 +0800
committerruki <[email protected]>2022-11-04 22:12:48 +0800
commit9fe1d17945bc670c0ec3b394c39e17e0cedb7b44 (patch)
treed78961b0ad88230f666519beaa673cef0054b280 /xmake/modules/private/utils/batchcmds.lua
parentefd90e2a9ffd2420607184828237aaf567ea079b (diff)
improve batchcmds
Diffstat (limited to 'xmake/modules/private/utils/batchcmds.lua')
-rw-r--r--xmake/modules/private/utils/batchcmds.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/xmake/modules/private/utils/batchcmds.lua b/xmake/modules/private/utils/batchcmds.lua
index e9b559118..797403b34 100644
--- a/xmake/modules/private/utils/batchcmds.lua
+++ b/xmake/modules/private/utils/batchcmds.lua
@@ -212,25 +212,21 @@ end
-- add command: os.runv
function batchcmds:runv(program, argv, opt)
table.insert(self:cmds(), {kind = "runv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.vrunv
function batchcmds:vrunv(program, argv, opt)
table.insert(self:cmds(), {kind = "vrunv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.execv
function batchcmds:execv(program, argv, opt)
table.insert(self:cmds(), {kind = "execv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.vexecv
function batchcmds:vexecv(program, argv, opt)
table.insert(self:cmds(), {kind = "vexecv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: compiler.compile