I got Subversion and Capistrano working, but when I do 'cap deploy:cold' to update my live app from the repository, Capistrano copies the newest version into a folder called "releases" inside my project folder and runs it from there. Every time I run 'cap deploy:cold', a new release is made and my app is just copied over and over.
Instead of the app being copied to:
/home/username/project
each time, it's copied to:
/home/username/project/releases/date1
/home/username/project/releases/date2
/home/username/project/releases/date3 etc...
Is there a way to make Capistrano deploy the app to the regular project directory and overwrite the old version each time?
Thanks!