Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Module-Starter CPAN distribution.

Report information
The Basics
Id: 13924
Status: resolved
Priority: 0/
Queue: Module-Starter

People
Owner: rjbs [...] cpan.org
Requestors: CLAESJAC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.40
Fixed in: (no value)



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 }