summaryrefslogtreecommitdiff
path: root/xmake/modules/private/utils/batchcmds.lua
diff options
context:
space:
mode:
authorjinke18 <[email protected]>2024-11-23 12:16:03 +0800
committerjinke18 <[email protected]>2024-11-23 12:16:03 +0800
commiteca5731863798e1005d2bafb254fe9c41d3002aa (patch)
tree62f604a6a0a6ebe33e0513b604435f17e1829bd4 /xmake/modules/private/utils/batchcmds.lua
parent9b75cbbca9898bf38651bef1feb8caaaf56aaf7d (diff)
fixbug: batchcmds
Diffstat (limited to 'xmake/modules/private/utils/batchcmds.lua')
-rw-r--r--xmake/modules/private/utils/batchcmds.lua14
1 files changed, 7 insertions, 7 deletions
diff --git a/xmake/modules/private/utils/batchcmds.lua b/xmake/modules/private/utils/batchcmds.lua
index c8e0c51a8..bd3350954 100644
--- a/xmake/modules/private/utils/batchcmds.lua
+++ b/xmake/modules/private/utils/batchcmds.lua
@@ -156,49 +156,49 @@ end
-- run command: os.cp
function _runcmd_cp(cmd, opt)
if not opt.dryrun then
- os.cp(cmd.srcpath, cmd.dstpath, opt.opt)
+ os.cp(cmd.srcpath, cmd.dstpath, cmd.opt)
end
end
-- run command: os.mv
function _runcmd_mv(cmd, opt)
if not opt.dryrun then
- os.mv(cmd.srcpath, cmd.dstpath, opt.opt)
+ os.mv(cmd.srcpath, cmd.dstpath, cmd.opt)
end
end
-- run command: os.ln
function _runcmd_ln(cmd, opt)
if not opt.dryrun then
- os.ln(cmd.srcpath, cmd.dstpath, opt.opt)
+ os.ln(cmd.srcpath, cmd.dstpath, cmd.opt)
end
end
-- run command: clean rpath
function _runcmd_clean_rpath(cmd, opt)
if not opt.dryrun then
- rpath_utils.clean(cmd.filepath, opt.opt)
+ rpath_utils.clean(cmd.filepath, cmd.opt)
end
end
-- run command: insert rpath
function _runcmd_insert_rpath(cmd, opt)
if not opt.dryrun then
- rpath_utils.insert(cmd.filepath, cmd.rpath, opt.opt)
+ rpath_utils.insert(cmd.filepath, cmd.rpath, cmd.opt)
end
end
-- run command: remove rpath
function _runcmd_remove_rpath(cmd, opt)
if not opt.dryrun then
- rpath_utils.remove(cmd.filepath, cmd.rpath, opt.opt)
+ rpath_utils.remove(cmd.filepath, cmd.rpath, cmd.opt)
end
end
-- run command: change rpath
function _runcmd_change_rpath(cmd, opt)
if not opt.dryrun then
- rpath_utils.change(cmd.filepath, cmd.rpath_old, cmd.rpath_new, opt.opt)
+ rpath_utils.change(cmd.filepath, cmd.rpath_old, cmd.rpath_new, cmd.opt)
end
end