From 4e1e8fdb80653f07975c65b65b32297c72023b01 Mon Sep 17 00:00:00 2001 From: Raphael Sofaer Date: Mon, 4 Jul 2011 09:49:50 -0700 Subject: [PATCH] Get rid of 'bogus ps syntax' maybe figure out why 1.9 is freaking out about the oauth steps --- features/step_definitions/oauth_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/oauth_steps.rb b/features/step_definitions/oauth_steps.rb index 5bfaf2152..1238e2dcd 100644 --- a/features/step_definitions/oauth_steps.rb +++ b/features/step_definitions/oauth_steps.rb @@ -100,7 +100,7 @@ class Chubbies def self.get_pid @pid ||= lambda { - processes = `ps -ax -o pid,command | grep "rackup -p #{PORT}"`.split("\n") + processes = `ps ax -o pid,command | grep "rackup -p #{PORT}"`.split("\n") processes = processes.select{|p| !p.include?("grep") } processes.first.split(" ").first }.call