summaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2012-07-28 09:47:49 (GMT)
committerEric Wong <normalperson@yhbt.net>2012-08-02 21:46:02 (GMT)
commit8266fc8be19ef1405d4ef175bb0e75ebc2730f5d (patch)
tree7237da943bbcbe5cbeda23123fb72a66202342b9 /git-svn.perl
parent9c27a57b2da502b7dd3736013b7a185fb6e5064e (diff)
downloadgit-8266fc8be19ef1405d4ef175bb0e75ebc2730f5d.zip
git-8266fc8be19ef1405d4ef175bb0e75ebc2730f5d.tar.gz
git-8266fc8be19ef1405d4ef175bb0e75ebc2730f5d.tar.bz2
git-svn: canonicalize earlier
Just a few things I noticed. Its good to canonicalize as early as possible. [ew: commit title] Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-svn.perl b/git-svn.perl
index 6e97545..6b90765 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -1436,16 +1436,16 @@ sub cmd_info {
# canonicalize_path() will return "" to make libsvn 1.5.x happy,
$path = "." if $path eq "";
- my $full_url = $url . ($fullpath eq "" ? "" : "/$fullpath");
+ my $full_url = canonicalize_url( $url . ($fullpath eq "" ? "" : "/$fullpath") );
if ($_url) {
- print canonicalize_url($full_url), "\n";
+ print "$full_url\n";
return;
}
my $result = "Path: $path\n";
$result .= "Name: " . basename($path) . "\n" if $file_type ne "dir";
- $result .= "URL: " . canonicalize_url($full_url) . "\n";
+ $result .= "URL: $full_url\n";
eval {
my $repos_root = $gs->repos_root;