I am currently deploying a Rails application using Capistrano. Cap deploy:update_code
usually works just fine to copy over application files from the SVN to the rails container, however when I do it now, it copies the folders but they are all empty. Any ideas of why this would happen or how to fix it?
Asked
Active
Viewed 221 times
1

Sam
- 864
- 2
- 11
- 21
-
I just restarted my computer and it seems to work fine now. Thanks! – Sam May 19 '09 at 02:33
1 Answers
0
Check your project out on the server manually to see if everything's checked in. Honestly the only time I've ever seen that is when I was either
deploying an old tag
or
forgot to check stuff in
Capistrano's not doing anything fancy - it's just doing svn co or svn export (depending on your settings).
It would help though to see your deploy.rb though. Without that I'm only guessing.

Brian Hogan
- 3,033
- 21
- 18