diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2024-02-19 00:47:00 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-03-04 09:39:21 +0100 |
commit | 4f549c758343935f842e4f85d27955e92862ca4c (patch) | |
tree | cee2db910df8e13ebd174ec2d5c2bf84346cf7b5 | |
parent | eb0a541d5d250d6d6559be509c71e12f39230a01 (diff) | |
download | vis-par-4f549c758343935f842e4f85d27955e92862ca4c.tar.gz |
-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 .. ")") |