Skip to content

Commit

Permalink
enable plugin syntax checks for developers
Browse files Browse the repository at this point in the history
  • Loading branch information
msimerson committed May 4, 2012
1 parent f2621a0 commit 38f2f5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/01-syntax.t
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ my @files = find( {wanted=>\&test_syntax, no_chdir=>1}, 'plugins', 'lib' );
sub test_syntax {
my $f = $File::Find::name;
chomp $f;
return if $f =~ m{^plugins/};
return if $f =~ m{^plugins/} && ! $ENV{QPSMTPD_DEVELOPER};
return if ! -f $f;
return if $skip_syntax{$f};
return if $f =~ m/(~|\.(bak|orig|rej))/;
Expand Down

0 comments on commit 38f2f5e

Please sign in to comment.