You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by Sam Ruby <ru...@apache.org> on 2016/02/14 00:58:44 UTC

[whimsy.git] [1/2] Commit 16b0b79: allow passenger time to exit

Commit 16b0b79197043626dbdd0e8f9ed7b719781fd8e9:
    allow passenger time to exit


Branch: refs/heads/master
Author: Sam Ruby <ru...@intertwingly.net>
Committer: Sam Ruby <ru...@intertwingly.net>
Pusher: rubys <ru...@apache.org>

------------------------------------------------------------
www/roster/Rakefile                                          | ++ -
------------------------------------------------------------
3 changes: 2 additions, 1 deletions.
------------------------------------------------------------


diff --git a/www/roster/Rakefile b/www/roster/Rakefile
index 323029b..23ac90f 100644
--- a/www/roster/Rakefile
+++ b/www/roster/Rakefile
@@ -3,7 +3,8 @@ Bundler.require(:default, :development)
 
 task :server => :listen do
   ENV['RACK_ENV']='development'
-  sh 'passenger start'
+  at_exit {sleep 0.5}
+  sh 'bundle exec passenger start'
 end
 
 task :listen do