made the shell return sane values

This commit is contained in:
Izaya 2019-12-16 16:43:32 +11:00
parent dcf0cb75ae
commit b408cfe27b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ setmetatable(shenv,{__index=function(_,k)
return function(...)
local tA = {...}
local pid = os.spawnfile(fp,fp,table.unpack(tA))
local tE = event.pull("process_finished",pid)
local tE = {event.pull("process_finished",pid)}
if tE[1] == true then
table.remove(tE,1)
end