Bugfix depth argument to recursive call
This commit is contained in:
parent
22cc2212e1
commit
a67cdf81d7
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue