Bugfix depth argument to recursive call

This commit is contained in:
Ray Miller 2011-08-22 10:38:50 +01:00
parent 22cc2212e1
commit a67cdf81d7

View file

@ -52,7 +52,7 @@ sub svn_find {
} }
for my $dir ( grep m{/$}, @dirents ) { for my $dir ( grep m{/$}, @dirents ) {
svn_find( $repos_url . $dir, $depth++ ); svn_find( $repos_url . $dir, $depth + 1 );
} }
} }