Skip Menu |

This queue is for tickets about the Config-JFDI CPAN distribution.

Report information
The Basics
Id: 47237
Status: resolved
Priority: 0/
Queue: Config-JFDI

People
Owner: Nobody in particular
Requestors: kmx [...] volny.cz
Cc:
AdminCc:

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



Subject: small patch to handle "Use of uninitialized value in ..."
Date: Mon, 22 Jun 2009 15:09:38 +0200
To: bug-Config-JFDI [...] rt.cpan.org
From: kmx <kmx [...] volny.cz>
Hi, here is a little patch for JFDI.pm that handles some "Use of uninitialized value in ..." warning that I have come across when installing MojoMojo (when running mojomojo_spawn_db.pl) sub _build_path_to { my $self = shift; return $self->config->{home} if $self->config->{home}; - return $self->{path} if -d $self->{path}; + return $self->{path} if (defined($self->{path}) && -d $self->{path}); return '.'; } It is absolutely not critical, it is not a blocker, it is just cosmetics but I'd rather report it. -- kmx
On Mon Jun 22 09:10:03 2009, kmx@volny.cz wrote: Show quoted text
> It is absolutely not critical, it is not a blocker, it is just cosmetics > but I'd rather report it. > > -- > kmx >
Thanks for the input, 0.063 is going up now, which fixes this issue