Fix write dir missing a trailing slash (#947)

This commit is contained in:
diath 2018-02-28 21:44:17 +01:00 committed by Ahmed Samy
parent a7b910a755
commit cb508c6b9f
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ end
g_resources.addSearchPath(g_resources.getWorkDir() .. "mods", true)
-- setup directory for saving configurations
g_resources.setupUserWriteDir(g_app.getCompactName())
g_resources.setupUserWriteDir(('%s/'):format(g_app.getCompactName()))
-- search all packages
g_resources.searchAndAddPackages('/', '.otpkg', true)
@ -52,4 +52,4 @@ local script = '/' .. g_app.getCompactName() .. 'rc.lua'
if g_resources.fileExists(script) then
dofile(script)
end
end