Subject: | --verbose doesn't print .cvsignore with basedir |
Hey,
when running module-starter with --verbose it doesn't include basedir when reporting where it wrote .cvsignore. See output below:
<snip>
Created CPANXR/t/pod.t
Created CPANXR/t/00-load.t
Created .cvsignore
Created CPANXR/Makefile.PL
Created CPANXR/MANIFEST
</snip>
Attached is a tiny patch that fixes the problem.
Cheers,
Claes
--- Module/Starter/Simple.pm.orig Fri Jul 29 22:15:09 2005
+++ Module/Starter/Simple.pm Fri Jul 29 22:14:08 2005
@@ -698,7 +698,7 @@
open( my $fh, ">", $fname ) or die "Can't create $fname: $!\n";
print $fh $self->cvsignore_guts();
close $fh;
- $self->progress( "Created .cvsignore" );
+ $self->progress( "Created $fname" );
return; # Not a file that goes in the MANIFEST
}