From 25d06d8f9db495f2a4e575c07d1d4959c53d43cb Mon Sep 17 00:00:00 2001 From: h1n1 Date: Sun, 26 Jul 2026 11:17:43 +0000 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D1=84=D0=BE=D1=80?= =?UTF-8?q?=D0=BC=D0=B0=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- boot/10_tmp_cleanup.lua | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/boot/10_tmp_cleanup.lua b/boot/10_tmp_cleanup.lua index 0457f66..0efc2a1 100644 --- a/boot/10_tmp_cleanup.lua +++ b/boot/10_tmp_cleanup.lua @@ -1,12 +1,9 @@ -- /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 - + local list = fs.list("/tmp") + for k, v in pairs(list) do + fs.delete("/tmp/" .. v) + end end -