Skip to content

Commit 43b303b

Browse files
committed
fix: dev plugins with dev=false should be configured as remote
1 parent f52cf32 commit 43b303b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/core/plugin.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function Spec:add(plugin, is_dep)
9292

9393
-- check for plugins that should be local
9494
for _, pattern in ipairs(Config.options.dev.patterns) do
95-
if plugin.dev or plugin[1]:find(pattern, 1, true) then
95+
if plugin.dev or (plugin[1]:find(pattern, 1, true) and plugin.dev ~= false) then
9696
plugin.uri = Config.options.dev.path .. "/" .. plugin.name
9797
break
9898
end

0 commit comments

Comments
 (0)