mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Skip skp files in license check (#8050)
* Skip skp files in license check This fixes https://bugs.chromium.org/p/skia/issues/detail?id=8828 * Update signature
This commit is contained in:
parent
7f16789b2e
commit
3335764ae9
@ -1,2 +1,2 @@
|
||||
Signature: 91b3b5b8c1ef9e911fd65b636d009be8
|
||||
Signature: e7b89482e4ea9fef22a33ad9fcc34961
|
||||
|
||||
|
||||
@ -200,6 +200,7 @@ FileType identifyFile(String name, Reader reader) {
|
||||
case '.webp': return FileType.binary; // WEBP
|
||||
case '.pdf': return FileType.binary; // PDF
|
||||
case '.emf': return FileType.binary; // Windows enhanced metafile format
|
||||
case '.skp': return FileType.binary; // Skia picture format
|
||||
// Videos
|
||||
case '.ogg': return FileType.binary; // Ogg media
|
||||
case '.mp4': return FileType.binary; // MPEG media
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user