Plugins: ignore autoload entries that begin with a # comment

This commit is contained in:
Pragmatic Software 2019-12-28 22:28:39 -08:00
parent b35c6a0143
commit 5c9f185af6
1 changed files with 2 additions and 2 deletions

View File

@ -66,8 +66,8 @@ sub autoload {
$plugin = basename $plugin;
$plugin =~ s/.pm$//;
# do not load plugins that begin with an underscore
next if $plugin =~ m/^_/;
# do not load plugins that begin with a comment
next if $plugin =~ m/^\s*#/;
$plugin_count++ if $self->load($plugin, %conf)
}