summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8276c00)
raw | patch | inline | side by side (parent: 8276c00)
author | Eric Wong <normalperson@yhbt.net> | |
Mon, 22 Jan 2007 20:25:30 +0000 (12:25 -0800) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Mon, 22 Jan 2007 21:15:50 +0000 (13:15 -0800) |
Not sure why it was there in the first place, we always do our
work relative to the URL we're connected to; even if that URL is
the root of the repository, so the leading slash is pointless...
Lets be consistent when printing things for the user to see.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
work relative to the URL we're connected to; even if that URL is
the root of the repository, so the leading slash is pointless...
Lets be consistent when printing things for the user to see.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-svn.perl | patch | blob | history |
diff --git a/git-svn.perl b/git-svn.perl
index b8ede9cbaea9552b933852fc9469bda4bbed3215..83ec03d4786a39f250f8f83c075c9dabf782b1db 100755 (executable)
--- a/git-svn.perl
+++ b/git-svn.perl
foreach my $d (sort { $b =~ tr#/#/# <=> $a =~ tr#/#/# } keys %$rm) {
$self->close_directory($bat->{$d}, $p);
my ($dn) = ($d =~ m#^(.*?)/?(?:[^/]+)$#);
- print "\tD+\t/$d/\n" unless $q;
+ print "\tD+\t$d/\n" unless $q;
$self->SUPER::delete_entry($d, $r, $bat->{$dn}, $p);
delete $bat->{$d};
}