Commit 3031c1da by Calen Pennington

Fix up call to spawn

parent 6a36d9db
......@@ -37,7 +37,7 @@ end
# Runs Process.spawn, and kills the process at the end of the rake process
# Expects the same arguments as Process.spawn
def background_process(*command)
pid = Process.spawn(*command, :pgroup => true)
pid = Process.spawn({}, *command, {:pgroup => true})
at_exit do
puts "Ending process and children"
......
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