aboutsummaryrefslogtreecommitdiff
path: root/src/lpm.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/lpm.lua')
-rw-r--r--src/lpm.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua
index 4413148..95ebd83 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -1488,7 +1488,7 @@ function Bottle:apply(addons, config)
end
for i, addon in pairs(self:installed_addons()) do
if #common.grep(installed, function(p) return p:depends_on(addon) end) == 0 then
- if not applied[addon.id] and not addon:is_core(self) and not addon:is_bundled(self) then
+ if not applied[addon.id] and not addon:is_core(self) and not addon:is_bundled(self) and addon.type ~= "meta" then
addon:uninstall(self)
changes = true
end