Fix problem with previous commit
Desastrous problem where core.normalize_path was removing the leading /.
This commit is contained in:
parent
708c2983ef
commit
ea3a7e81be
|
@ -236,6 +236,9 @@ end
|
|||
|
||||
local function split_on_slash(s, sep_pattern)
|
||||
local t = {}
|
||||
if s:match("^[/\\]") then
|
||||
t[#t + 1] = ""
|
||||
end
|
||||
for fragment in string.gmatch(s, "([^/\\]+)") do
|
||||
t[#t + 1] = fragment
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue