Subject: | Directory names with ++ not supported |
In Cover.pm at line 472:
$file =~ s|^$Dir/|| if defined $Dir;
If the directory name has '++' in its name it will blow up the regex.
The fix is to have:
$file =~ s|^\Q$Dir\E/|| if defined $Dir;