This commit is contained in:
Igor Timofeev 2019-01-19 12:18:53 +03:00
parent 17b955d965
commit 4975def113

View File

@ -26,7 +26,7 @@ paths.system.applicationSettings = paths.system.applications .. "Settings.app/Ma
function paths.create(what)
for _, path in pairs(what) do
if path:sub(-1, -1) == "/" then
filesystem.makeDirectory(path)
require("Filesystem").makeDirectory(path)
end
end
end