[LLVMdev] svn server permissions for top-level svn update

Jay Foad jay.foad at gmail.com
Mon Apr 25 01:01:31 PDT 2011


> I use the following from a script:
>
>   find . -maxdepth 1 -mindepth 1 -type d -name .svn -prune -o -type d -exec svn
> update \{\} \;

I'm not sure that would work in my situation. One of the curious
problems I have is that this doesn't work:

$ svn up llvm/trunk
svn: Server sent unexpected return value (403 Forbidden) in response
to REPORT request for '/svn/llvm-project/!svn/vcc/default'

but this does:

$ ( cd llvm/trunk/ ; svn up )
At revision 130125.

So I guess I'll carry on using my:

$ for t in */trunk ; do ( cd $t ; svn up ) ; done

Yuck,
Jay.




More information about the llvm-dev mailing list