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 ...@@ -82,10 +82,14 @@ module Pod
Open3.popen3(bin, *command) do |i, o, e, t| Open3.popen3(bin, *command) do |i, o, e, t|
reader(o, stdout) reader(o, stdout)
reader(e, stderr) reader(e, stderr)
i.close i.close
status = t.value status = t.value
o.flush
e.flush
sleep(0.01)
status status
end end
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