Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaphael Sofaer <raphael@joindiaspora.com>2011-07-04 20:49:50 +0400
committerRaphael Sofaer <raphael@joindiaspora.com>2011-07-04 20:49:50 +0400
commit4e1e8fdb80653f07975c65b65b32297c72023b01 (patch)
tree5d8fa2ed0ba4379673f59b5b0846473ff4eef7cd /features
parentb64ba858784efa662a12c61ac044a8cc6484da87 (diff)
Get rid of 'bogus ps syntax' maybe figure out why 1.9 is freaking out about the oauth steps
Diffstat (limited to 'features')
-rw-r--r--features/step_definitions/oauth_steps.rb2
1 files changed, 1 insertions, 1 deletions
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