]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
App::Rgit::Repository::new: split the dir to decide what we should try for the repo
authorVincent Pit <vince@profvince.com>
Mon, 6 Oct 2008 15:57:53 +0000 (17:57 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 6 Oct 2008 15:57:53 +0000 (17:57 +0200)
lib/App/Rgit/Repository.pm

index 83241a15d941d0c9fb3d13ca1a38b8c2ecc321ea..c282ebde52d6ce6113daf5896749f5c59ca9c138 100644 (file)
@@ -47,8 +47,10 @@ sub new {
   $work = $dir;
  } else { 
   my @tries = ($dir);
-  push @tries, "$dir.git" unless $dir =~ /\.git$/;
-  push @tries, catdir($dir, '.git') unless $dir eq '.git';
+  my @chunks = splitdir $dir;
+  my $last = pop @chunks;
+  push @tries, "$dir.git" unless $last =~ /\.git$/;
+  push @tries, catdir($dir, '.git') unless $last eq '.git';
   for (@tries) {
    if (-d $_ && -d "$_/refs" and -d "$_/objects" and -e "$_/HEAD") {
     $repo = $_;
@@ -56,12 +58,12 @@ sub new {
    }
   }
   return unless defined $repo;
-  my @chunks = splitdir($repo);
-  my $last = pop @chunks;
+  @chunks = splitdir $repo;
+  $last = pop @chunks;
   if ($last eq '.git') {
    $bare = 0;
    $name = $chunks[-1];
-   $work = catdir(@chunks);
+   $work = catdir @chunks;
   } else {
    $bare = 1;
    ($name) = $last =~ /(.*)\.git$/;