Skip to content

Commit

Permalink
Add node_kind function to differentiate between file and directory
Browse files Browse the repository at this point in the history
Signed-off-by: Yaacov Akiba Slama <ya@slamail.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Yaacov Akiba Slama authored and Junio C Hamano committed Nov 8, 2005
1 parent fcfa32b commit cbce5d8
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions git-svnimport.perl
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,17 @@ ($$)

open BRANCHES,">>", "$git_dir/svn2git";

sub get_file($$$) {
my($rev,$branch,$path) = @_;
sub node_kind($$$) {
my ($branch, $path, $revision) = @_;
my $pool=SVN::Pool->new;
my $kind = $svn->{'svn'}->check_path(revert_split_path($branch,$path),$revision,$pool);
$pool->clear;
return $kind;
}

sub revert_split_path($$) {
my($branch,$path) = @_;

# revert split_path(), below
my $svnpath;
$path = "" if $path eq "/"; # this should not happen, but ...
if($branch eq "/") {
Expand All @@ -274,6 +281,14 @@ ($$$)
$svnpath = "$branch_name/$branch/$path";
}

return $svnpath
}

sub get_file($$$) {
my($rev,$branch,$path) = @_;

my $svnpath = revert_split_path($branch,$path);

# now get it
my $name;
if($opt_d) {
Expand Down

0 comments on commit cbce5d8

Please sign in to comment.