diff options
Diffstat (limited to 'scripts/hasCopyright.pl')
-rwxr-xr-x[-rw-r--r--] | scripts/hasCopyright.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/hasCopyright.pl b/scripts/hasCopyright.pl index 575682a8af..c80135a791 100644..100755 --- a/scripts/hasCopyright.pl +++ b/scripts/hasCopyright.pl @@ -110,8 +110,8 @@ while (1) { next; } - unless ($hasGPL) { - print "$file\tERROR\tNo GPL license\n"; + if ($hasGPL) { + print "$file\tERROR\tHas GPL license\n"; next; } |