Fix write dir missing a trailing slash (#947)
This commit is contained in:
parent
a7b910a755
commit
cb508c6b9f
4
init.lua
4
init.lua
|
@ -22,7 +22,7 @@ end
|
||||||
g_resources.addSearchPath(g_resources.getWorkDir() .. "mods", true)
|
g_resources.addSearchPath(g_resources.getWorkDir() .. "mods", true)
|
||||||
|
|
||||||
-- setup directory for saving configurations
|
-- setup directory for saving configurations
|
||||||
g_resources.setupUserWriteDir(g_app.getCompactName())
|
g_resources.setupUserWriteDir(('%s/'):format(g_app.getCompactName()))
|
||||||
|
|
||||||
-- search all packages
|
-- search all packages
|
||||||
g_resources.searchAndAddPackages('/', '.otpkg', true)
|
g_resources.searchAndAddPackages('/', '.otpkg', true)
|
||||||
|
@ -52,4 +52,4 @@ local script = '/' .. g_app.getCompactName() .. 'rc.lua'
|
||||||
|
|
||||||
if g_resources.fileExists(script) then
|
if g_resources.fileExists(script) then
|
||||||
dofile(script)
|
dofile(script)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue