Skip to content

Commit

Permalink
accept any return status for stop/quit, try to fix pill require
Browse files Browse the repository at this point in the history
  • Loading branch information
qrush committed Aug 18, 2010
1 parent ed955bc commit 0c4148d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/deploy.rb
Expand Up @@ -77,8 +77,8 @@
namespace :bluepill do
desc "Stop processes that bluepill is monitoring and quit bluepill"
task :quit, :roles => [:app] do
sudo "bluepill stop"
sudo "bluepill quit"
sudo "bluepill stop; true"
sudo "bluepill quit; true"
end

desc "Load bluepill configuration and start it"
Expand Down
2 changes: 1 addition & 1 deletion config/pills/production.rb
@@ -1,2 +1,2 @@
RELEASE_PATH = "/var/www/rubycentral/gemcutter.org"
require '../pill'
require 'config/pill'
2 changes: 1 addition & 1 deletion config/pills/staging.rb
@@ -1,2 +1,2 @@
RELEASE_PATH = "/var/www/rubycentral/staging.gemcutter.org"
require '../pill'
require 'config/pill'

0 comments on commit 0c4148d

Please sign in to comment.