Prabhu Gnana Sundar wrote on Thu, Oct 18, 2012 at 20:35:03 +0530:
> Hi all,
>
> Currently svnadmin verify would stop verification process once an  
> error/corruption is found in the repo. It does not go till the HEAD of  
> the repo to see if there are further corruptions/errors.
>

Why is

  r=0
  HEAD=$(svnlook youngest $repos)
  while [ $r -le $HEAD ]; do
    svnadmin verify -r$r $repos
    r=$(($r + 1))
  done

not an option?

> It would be helpful if "--force" switch would do this.
>
> Attaching a patch and the log message for the same. Please share your  
> thoughts...
>

Reply via email to