Skip to content

Commit c4d924a

Browse files
authored
fix(reloader): remove extra trailing separator (#180)
1 parent 511524e commit c4d924a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/lazy/manage/reloader.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function M.enable()
1919
end
2020
if type(Config.spec) == "string" then
2121
M.timer = vim.loop.new_timer()
22-
M.root = vim.fn.stdpath("config") .. "/lua/"
22+
M.root = vim.fn.stdpath("config") .. "/lua"
2323
M.check(true)
2424
M.timer:start(2000, 2000, M.check)
2525
end

0 commit comments

Comments
 (0)