Skip to content
Snippets Groups Projects
Commit 3031c1da authored by Calen Pennington's avatar Calen Pennington
Browse files

Fix up call to spawn

parent 6a36d9db
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment