From 3031c1da3809d15516468cbce1abb2c027ae8b76 Mon Sep 17 00:00:00 2001
From: Calen Pennington <calen.pennington@gmail.com>
Date: Thu, 18 Apr 2013 07:18:22 -0400
Subject: [PATCH] Fix up call to spawn

---
 rakefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rakefile b/rakefile
index 3b96a2000ef..87f1e78317b 100644
--- a/rakefile
+++ b/rakefile
@@ -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"
-- 
GitLab