diff options
-rwxr-xr-x | xlint | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xlint b/xlint index 6798c8a..dbb1f9e 100755 --- a/xlint +++ b/xlint @@ -132,7 +132,9 @@ for template; do scan 'license=.*[^L]GPL[^-]' "license GPL without version" scan 'license=.*LGPL[^-]' "license LGPL without version" if ! grep -q vlicense "$template"; then - scan 'license=.*custom' "license 'custom', but no use of vlicense" + for l in custom MIT BSD ISC; do + scan "license=.*$l" "license '$l', but no use of vlicense" + done fi if ! sed -n '/^version=/{n;/revision=/b;q1}' "$template"; then scan 'revision=' "revision does not appear immediately after version" |