Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip skp files in license check #8050

Merged
merged 2 commits into from
Mar 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/licenses_golden/tool_signature
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Signature: 91b3b5b8c1ef9e911fd65b636d009be8
Signature: e7b89482e4ea9fef22a33ad9fcc34961

1 change: 1 addition & 0 deletions tools/licenses/lib/filesystem.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down