Commit 67d5c590 authored by Samuel E. Giddins's avatar Samuel E. Giddins

[Executable] Fix failing EOFError spec

parent 6f906c42
......@@ -82,10 +82,14 @@ module Pod
Open3.popen3(bin, *command) do |i, o, e, t|
reader(o, stdout)
reader(e, stderr)
i.close
status = t.value
o.flush
e.flush
sleep(0.01)
status
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment