Trim leading / off of paths in git-svn prop_walk
prop_walk adds a leading / to all subdirectory paths. Unfortunately this causes a problem when the remote repo lives in a subdirectory itself, as the leading / causes subsequent PROPFIND calls to be executed on the wrong path. Trimming the / before calling the PROPFIND fixes this problem. Signed-off-by: Kevin Ballard <kevin@sb.org> Acked-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
08359b0067
commit
35cda06164
|
|
@ -1858,6 +1858,7 @@ sub rel_path {
|
||||||
sub prop_walk {
|
sub prop_walk {
|
||||||
my ($self, $path, $rev, $sub) = @_;
|
my ($self, $path, $rev, $sub) = @_;
|
||||||
|
|
||||||
|
$path =~ s#^/##;
|
||||||
my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
|
my ($dirent, undef, $props) = $self->ra->get_dir($path, $rev);
|
||||||
$path =~ s#^/*#/#g;
|
$path =~ s#^/*#/#g;
|
||||||
my $p = $path;
|
my $p = $path;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue