Subject: | warnings if $ENV{ HOME } is not set |
Hi,
Re: Line 18 of BaseDir.pm
our $xdg_data_home = File::Spec->catdir($ENV{HOME}, qw/.local share/);
On Win32 machines where $ENV{ HOME } isn't set, File::BaseDir will make File::Spec generate warnings because it is sending undef to the catdir() function.
-Brian