Skip to content

Commit

Permalink
Cleans up some after filters syntax in defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenj committed Apr 4, 2012
1 parent a3d3a19 commit ce38955
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions lib/openminds_deploy/defaults.rb
Expand Up @@ -26,15 +26,9 @@
end
end

after 'deploy:finalize_update' do
dbconfig.link
end
after 'deploy:finalize_update', 'dbconfig:link'

after 'deploy:setup' do
dbconfig.copy_database_config
end
after 'deploy:setup', 'dbconfig:copy_database_config'

after :deploy do
deploy.cleanup
end
after :deploy, 'deploy:cleanup'
end

0 comments on commit ce38955

Please sign in to comment.