I stumbled across this problem after updating an local cms installation over the cmss update procedure.
During the commit to svn I got that error "... path ... missing or not locked". That is because the svn client added new directories to the svn tree but couldn't add the .svn directory within this specific dir.
In order to get it work I had to manually add the directory to svn
Code: Select all
#using --force is mandatory in this case
svn add --force images
svn revert -R images
seas