summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/actions/require/impl/package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/require/impl/package.lua b/xmake/actions/require/impl/package.lua
index a94d10bae..98e30cc03 100644
--- a/xmake/actions/require/impl/package.lua
+++ b/xmake/actions/require/impl/package.lua
@@ -336,7 +336,7 @@ function _get_confirm(packages)
-- show tips
cprint("${bright yellow}note: ${default yellow}try installing these packages (pass -y to skip confirm)?")
for _, package in ipairs(packages) do
- print(" -> %s %s", package:name(), package:version_str() or "")
+ print(" -> %s %s %s", package:name(), package:version_str() or "", package:debug() and "(debug)" or "")
end
cprint("please input: y (y/n)")