Hello!
I'm experimenting the Capistrano 3 with the Bedrock WordPress Stack (
http://roots.io/wordpress-stack/).
When using Rails, Capistrano 2 and the multi-stage extension , deploy_to would deploy an application to the deploy_to path with the stage.
For example:
set :deploy_to, "/var/www/my_app"
Deploys to:
/var/www/my_app/STAGE_NAME
With Capistrano 3 and Bedrock, it seems deploy to does not append the stage name.
For example:
set :deploy_to, "/var/www/my_app"
Deploys to:
/var/www/my_app
I got used to having the stage name appended in Capistrano 2 and could not help but notice it seems to be missing in Capistrano 3. Is this the expected behaviour in Capistrano 3?
Thank you,
Silumesii