From 11ba1ea6602ea18aaa6bb9310dee8983f70e8e93 Mon Sep 17 00:00:00 2001 From: Doug Bell Date: Wed, 11 Jul 2007 00:18:36 +0000 Subject: [PATCH] fix: Re-added ability to have comments in preload.custom --- sbin/preload.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/sbin/preload.perl b/sbin/preload.perl index 26e93f84a..e7bd9a00c 100644 --- a/sbin/preload.perl +++ b/sbin/preload.perl @@ -9,6 +9,7 @@ BEGIN { while (my $line = ) { 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;