fix: Re-added ability to have comments in preload.custom

This commit is contained in:
Doug Bell 2007-07-11 00:18:36 +00:00
parent f33e7533f4
commit 11ba1ea660

View file

@ -9,6 +9,7 @@ BEGIN {
while (my $line = <FILE>) {
chomp $line;
next unless $line;
next if $line =~ /^#/;
if (!-d $line) {
print "WARNING: Not adding lib directory '$line' from $webguiRoot/sbin/preload.custom: Directory does not exist.\n";
next;