diff --git a/main.go b/main.go index b4cdd69..eb05d21 100644 --- a/main.go +++ b/main.go @@ -376,5 +376,6 @@ func hasLicense(b []byte) bool { } return bytes.Contains(bytes.ToLower(b[:n]), []byte("copyright")) || bytes.Contains(bytes.ToLower(b[:n]), []byte("mozilla public")) || - bytes.Contains(bytes.ToLower(b[:n]), []byte("spdx-license-identifier")) + bytes.Contains(bytes.ToLower(b[:n]), []byte("spdx-license-identifier")) || + bytes.Contains(bytes.ToLower(b[:n]), []byte("©")) }