Compare commits

...

2 Commits

2 changed files with 13 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
.settings
+12
View File
@@ -0,0 +1,12 @@
-- /tmp folder cleanup
if fs.exists("/tmp") then
local list = fs.list("/tmp")
for k, v in pairs(list) do
fs.delete("/tmp/" .. v)
end
end