summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2026-01-10 00:50:50 +0800
committerruki <[email protected]>2026-01-10 00:50:50 +0800
commit580464b9ea76a3d91e02be9ba836f2e906437109 (patch)
treeba78a39f4deb0952751a8b48b413da657058ede9
parente0d420311defad1f12af9619390c08a1a548f371 (diff)
improve tips
-rw-r--r--xmake/modules/private/action/require/impl/actions/install.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/private/action/require/impl/actions/install.lua b/xmake/modules/private/action/require/impl/actions/install.lua
index 8a2514e1a..676bd8be5 100644
--- a/xmake/modules/private/action/require/impl/actions/install.lua
+++ b/xmake/modules/private/action/require/impl/actions/install.lua
@@ -429,9 +429,9 @@ function _get_package_tipname(package)
if current_scheme and not current_scheme:is_default() then
local scheme_name = current_scheme:name()
if current_scheme:is_precompiled() then
- scheme_name = "the precompiled artifacts"
+ scheme_name = "precompiled"
end
- package_tipname = package_tipname .. " from " .. scheme_name
+ package_tipname = package_tipname .. " ${dim}(" .. scheme_name .. ")${clear}"
end
return package_tipname
end