aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lpm.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lpm.lua b/src/lpm.lua
index 9b894c8..ddbb1f5 100644
--- a/src/lpm.lua
+++ b/src/lpm.lua
@@ -1292,7 +1292,7 @@ local function lpm_install(...)
if name == "lite-xl" then
lpm_lite_xl_install(version)
else
- local plugins = { system_bottle:get_plugin(name, version, { mod_version = system_bottle.lite_xl.mod_version }) }
+ local plugins = common.grep({ system_bottle:get_plugin(name, version, { mod_version = system_bottle.lite_xl.mod_version }) }, function(e) return not e:is_installed(system_bottle) end)
if #plugins == 0 then error("can't find plugin " .. name .. " mod-version: " .. (system_bottle.lite_xl.mod_version or 'any')) end
for j,v in ipairs(plugins) do v:install(system_bottle) end
end