Skip to content

Commit 540847b

Browse files
committed
fix: strip / from dirs. Fixes #60
1 parent 86eaa11 commit 540847b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lua/lazy/core/util.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ function M.norm(path)
3535
end
3636
path = home .. path:sub(2)
3737
end
38-
return path:gsub("\\", "/")
38+
path = path:gsub("\\", "/")
39+
return path:sub(-1) == "/" and path:sub(1, -2) or path
3940
end
4041

4142
function M.try(fn, msg)

0 commit comments

Comments
 (0)