I'm deploying to a Debian server with Capistrano which fails due to locked a working copy. I narrowed it down to this:
svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysite/releases/1234
So if I run:
cap invoke COMMAND='svn checkout http://myrepo.net/mysite/tags/1.0 /var/www/mysite/releases/1234'
I get an error:
svn: Working copy '/var/www/mysite/releases/1' locked
Clean up makes no difference. The same command runs fine from the server. When I list the files in 1234/ I can see all the .svn and working copy files.
Can someone please point me in the right direction to resolve this? How do I tell if the working copy is really locked? svn status shows nothing...