Use a relative path for SVN importing

The absolute path (with the leading slash) breaks SVN importing,
because it then looks for /trunk/... instead of /svn/trunk/...
(in my case, the repository URL was https://servername/svn/)

Signed-off-by: Christian Biesinger <cbiesinger@web.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Christian Biesinger 2006-02-11 16:44:11 +01:00 коммит произвёл Junio C Hamano
Родитель 21fcd1bdea
Коммит 7bbdeaa969
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -318,7 +318,7 @@ sub get_file($$$) {
die $res->status_line." at $url\n";
}
} else {
$name = $svn->file("/$svnpath",$rev);
$name = $svn->file("$svnpath",$rev);
return undef unless defined $name;
}