From 4f549c758343935f842e4f85d27955e92862ca4c Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 19 Feb 2024 00:47:00 +0100 Subject: Actually clean up after yourself. --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 0276b4a..4411c37 100644 --- a/init.lua +++ b/init.lua @@ -77,8 +77,8 @@ local function run_shell_cmd(cmd, params, inp) local tmp_file = assert(io.open(tmp_name, "r")) out = tmp_file:read("*a") tmp_file:close() - print("out = " .. out) - -- os.remove(tmp_name) + -- print("out = " .. out) + os.remove(tmp_name) if not exit_code then print("calling " .. full_cmd .. " failed (" .. out .. ")") -- cgit