update installer to cleanup /tmp/ entirely
This commit is contained in:
parent
80f91cbcd9
commit
7e21413e7b
@ -91,12 +91,14 @@ local function main()
|
|||||||
log.info("Installing")
|
log.info("Installing")
|
||||||
for k, v in ipairs(toDownload) do
|
for k, v in ipairs(toDownload) do
|
||||||
fs.delete(v.dest)
|
fs.delete(v.dest)
|
||||||
fs.move("/tmp/" .. v.hash .. ".lua", v.dest)
|
fs.copy("/tmp/" .. v.hash .. ".lua", v.dest)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
fs.delete("/tmp/")
|
||||||
else
|
else
|
||||||
log.info("Nothing to do")
|
log.info("Nothing to do")
|
||||||
end
|
end
|
||||||
|
|
||||||
log.info("Installation complete!")
|
log.info("Installation complete!")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user