Skip to content

Commit 97f4df0

Browse files
committed
fix(runner): only use Config.plugins when updated. Fixes #1560
1 parent 804cae0 commit 97f4df0

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

lua/lazy/manage/init.lua

+6-2
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,11 @@ function M.install(opts)
8585
"plugin.docs",
8686
{
8787
"wait",
88-
sync = function()
88+
---@param runner Runner
89+
sync = function(runner)
8990
require("lazy.pkg").update()
9091
Plugin.load()
92+
runner:update()
9193
end,
9294
},
9395
"plugin.build",
@@ -114,9 +116,11 @@ function M.update(opts)
114116
"plugin.docs",
115117
{
116118
"wait",
117-
sync = function()
119+
---@param runner Runner
120+
sync = function(runner)
118121
require("lazy.pkg").update()
119122
Plugin.load()
123+
runner:update()
120124
end,
121125
},
122126
"plugin.build",

lua/lazy/manage/runner.lua

+8-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,14 @@ function Runner.new(opts)
4949
end
5050

5151
function Runner:plugin(name)
52-
return Config.plugins[name] or self._plugins[name]
52+
return self._plugins[name]
53+
end
54+
55+
--- Update plugins
56+
function Runner:update()
57+
for name in pairs(self._plugins) do
58+
self._plugins[name] = Config.plugins[name] or self._plugins[name]
59+
end
5360
end
5461

5562
function Runner:start()

0 commit comments

Comments
 (0)