fix: ignore proper exit on sigterm

This commit is contained in:
Barrett Ruth 2024-01-24 09:42:22 -05:00
parent 8cae0641ca
commit d135afb5e8

View file

@ -67,7 +67,8 @@ M.start = function()
on_exit = function(_, exit_code) on_exit = function(_, exit_code)
job_cache[dir] = nil job_cache[dir] = nil
if exit_code == 0 then -- instance killed with SIGTERM
if exit_code == 143 then
return return
end end