The best guess for a fix to this was to add the grep clause:
sub readDirectory($) {
my $dirName = shift;
opendir my $dh, $dirName
or die "Failed to read directory $dirName: $!";
my @result = grep ! /^\./, readdir $dh;
close $dh;
return @result;
}
in Utils.pm.
It seems to require a system restart.
WeBWorK Main Forum
Making a git repository for a local library
This forum has a limit to the number of forum postings you can make in a given time period - this is currently set at 10 posting(s) in 1 day