Hi,
I think cap cold-deploy does not do as the documentation says. desc <<-DESC Used only for deploying when the spinner isn't running. It invokes deploy, and when it finishes it then invokes the spinner task (to start the spinner). DESC task :cold_deploy do deploy spinner end The deploy does a restart: task :deploy do update restart end which first stops the server. But it shouldn't even be running so I get errors in my output. It's no big deal but I think it could easily be fixed by changing to: desc <<-DESC Used only for deploying when the spinner isn't running. It invokes deploy, and when it finishes it then invokes the spinner task (to start the spinner). DESC task :cold_deploy do update spinner end --Jeroen --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
