summaryrefslogtreecommitdiff
path: root/xmake/modules
diff options
context:
space:
mode:
authorruki <[email protected]>2026-08-08 22:41:30 +0800
committerruki <[email protected]>2026-08-09 18:28:59 +0800
commit8564ea66201d1398cb8ee5b91efc784a379c4a64 (patch)
treea1f909bc0c06a456d423e299733ab10d86cbeb47 /xmake/modules
parent4fc05750f6da0568df7a0fa836e114128d3ba849 (diff)
fix plugin bug and add description
Diffstat (limited to 'xmake/modules')
-rw-r--r--xmake/modules/private/action/require/impl/actions/install.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/impl/actions/install.lua b/xmake/modules/private/action/require/impl/actions/install.lua
index 7e60b16b6..40ca225f0 100644
--- a/xmake/modules/private/action/require/impl/actions/install.lua
+++ b/xmake/modules/private/action/require/impl/actions/install.lua
@@ -503,7 +503,8 @@ function main(package)
-- register this addon, so that xmake can find its payloads, e.g. plugins
if package:is_addon() then
- addon.register(package:name(), package:version_str() or "latest")
+ addon.register(package:name(), package:version_str() or "latest",
+ {description = package:description()})
end
installed_now = true
end