Follow-up Comment #3, sr #1425 (project savane):

FWIW, I created a super-simple hackified shell script to do this:

#!/bin/bash

for each in `ls -1 /var/lib/svn`
do
        svnlook tree /var/lib/svn/$each | grep website/
        if [ $? == 0 ]; then
                if [ -d /var/www/$each ]; then
                        svn update /var/www/$each
                else
                        svn co file:///var/lib/svn/$each/website
/var/www/$each
                fi
        fi
done


    _______________________________________________________

Reply to this item at:

  <http://gna.org/support/?1425>

_______________________________________________
  Message sent via/by Gna!
  http://gna.org/


_______________________________________________
Savane-doc-dev mailing list
[email protected]
https://mail.gna.org/listinfo/savane-doc-dev

Répondre à