summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2025-10-29 23:23:24 +0800
committerruki <[email protected]>2025-10-29 23:23:24 +0800
commit05f3c99fb3ef5fb97088644f792e65d4b813a2ef (patch)
tree2dbd9b6b16a514d916a1ce15c5c852db940b0d5f
parent6871f31ec3fe4cdc4199c57c86f8371752f4e75b (diff)
fix show cmd
-rw-r--r--xmake/modules/private/utils/batchcmds.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/utils/batchcmds.lua b/xmake/modules/private/utils/batchcmds.lua
index ab45dc121..378f4f0f5 100644
--- a/xmake/modules/private/utils/batchcmds.lua
+++ b/xmake/modules/private/utils/batchcmds.lua
@@ -39,7 +39,7 @@ local batchcmds = batchcmds or object { _init = {"_TARGET", "_CMDS", "_DEPINFO",
function _runcmd_show(cmd, opt)
local format = cmd.format
if format then
- cprint(showtext, format, table.unpack(cmd.argv))
+ cprint(format, table.unpack(cmd.argv))
end
end