# $Id: test_repo.sh.in 273 2007-05-02 08:54:02Z peter $ toy=$srcdir/toy_project; # test repository does not exist and need to be checked out if [ ! -d $toy ]; then repodir=`cd "$srcdir" && pwd`; repodir=$repodir"/repo/trunk"; svn checkout file://$repodir $toy; fi # revert and update svn revert -R $toy/*; svn update $toy; if [ ! -d $targetdir ]; then mkdir $targetdir; fi exec $top_builddir/bin/svndigest -r $toy -t $targetdir -f --copyright $1;