diff options
-rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 .. ")") |