Skip Menu |

This queue is for tickets about the PluceneSimple CPAN distribution.

Report information
The Basics
Id: 6444
Status: new
Priority: 0/
Queue: PluceneSimple

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

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



Subject: You cannot use constant DIRECTORY => "/tmp/testindex/$$";
You cannot assume that /tmp is there and writable Please change use constant DIRECTORY => "/tmp/testindex/$$"; to use File::Spec; use constant DIRECTORY => File::Spec->tmpdir(); Thanks
Or use File::Spec; use constant DIRECTORY => File::Spec->catdir( File::Spec->tmpdir() => testindex => $$ ); :)