update installer to cleanup /tmp/ entirely

This commit is contained in:
Kodi Craft 2025-03-27 10:57:10 +01:00
parent 80f91cbcd9
commit 7e21413e7b
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

@ -91,12 +91,14 @@ local function main()
log.info("Installing")
for k, v in ipairs(toDownload) do
fs.delete(v.dest)
fs.move("/tmp/" .. v.hash .. ".lua", v.dest)
fs.copy("/tmp/" .. v.hash .. ".lua", v.dest)
end
fs.delete("/tmp/")
else
log.info("Nothing to do")
end
log.info("Installation complete!")
end