We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7fac14 commit f7fe75eCopy full SHA for f7fe75e
core/path.lua
@@ -270,7 +270,7 @@ function Path:join(path)
270
path = assert(tostring(copy:get_directory())) .. path:sub(4)
271
elseif path:sub(1, 1) == "." and path:sub(2, 2) == "/" then
272
path = assert(tostring(self:get_directory())) .. path:sub(3)
273
- elseif path.sub(1, 1) ~= "/" then
+ elseif path:sub(1, 1) ~= "/" and path:sub(1, 1) ~= "~" then
274
path = assert(tostring(self:get_directory())) .. path
275
end
276
return Path:new(path)
core/version.lua
@@ -1 +1 @@
1
-return "β0.1.0"
+return "β0.1.1"
0 commit comments