]> git.vpit.fr Git - perl/modules/CPANPLUS-Dist-Gentoo.git/commitdiff
Set $stat->dist properly in prepare() and create()
authorVincent Pit <vince@profvince.com>
Fri, 12 Dec 2008 21:06:10 +0000 (22:06 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 12 Dec 2008 21:30:25 +0000 (22:30 +0100)
lib/CPANPLUS/Dist/Gentoo.pm

index 24e1e357637016eac27c318695904956097673fe..2efbffa4608cae3c2be0273e73d916811eae51f1 100644 (file)
@@ -189,6 +189,7 @@ sub prepare {
   if ($skip) {
    $stat->prepared(1);
    $stat->created(1);
+   $stat->dist($file);
    return 1;
   }
  }
@@ -246,15 +247,18 @@ sub create {
  unless ($stat->prepared) {
   error 'Can\'t create ' . $stat->distribution . ' since it was never prepared -- aborting';
   $stat->created(0);
+  $stat->dist(undef);
   return 0;
  }
 
  if ($stat->created) {
   msg $stat->distribution . ' was already created -- skipping';
+  $stat->dist($stat->eb_file);
   return 1;
  }
 
  $stat->created(0);
+ $stat->dist(undef);
 
  $self->SUPER::create(@_);
 
@@ -318,6 +322,7 @@ sub create {
  }
 
  $stat->created(1);
+ $stat->dist($file);
  return 1;
 }