Why isn't Capistrano copying my files?

I am currently deploying a Rails application using Capistrano. Cap deploy:update_code

usually works fine to copy app files from SVN to rails container, however when I do it now it copies folders but they are all empty. Any ideas why this is happening or how to fix it?

+1


a source to share


1 answer


Check your project on the server manually to see if everything is checked. Honestly, the only time I've ever seen I was either

expanding the old tag

or



forgot to check the stuff in

Capistrano doesn't do anything fancy - it just does svn co or svn export (depending on your setup).

However, it helps to see your deploy.rb though. Without this, I can only guess.

0


a source







All Articles