Bug 220954, add test for common problem and give correct message in that case, r=timeless.

This commit is contained in:
hjtoi%comcast.net 2003-11-13 21:07:29 +00:00
parent e3cf218b0c
commit 8a86410567

View File

@ -267,6 +267,8 @@ foreach my $Dir (@Dirs) {
ProcessOneFile($dir);
} elsif (-d $dir) {
ProcessDirectory($dir);
} elsif (!-r $dir) {
print "$Dir: not readable, skipping...\n";
} else {
print "$Dir: not a file or directory, skipping...\n";
}