We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd457d5 commit 7b5d84aCopy full SHA for 7b5d84a
graalpython/org.graalvm.python.embedding/src/org/graalvm/python/embedding/vfs/VirtualFileSystem.java
@@ -97,7 +97,7 @@ public static enum HostIO {
97
public static final class Builder {
98
private static final Predicate<Path> DEFAULT_EXTRACT_FILTER = (p) -> {
99
var s = p.toString();
100
- return s.endsWith(".so") || s.endsWith(".dylib") || s.endsWith(".pyd") || s.endsWith(".dll");
+ return s.endsWith(".so") || s.endsWith(".dylib") || s.endsWith(".pyd") || s.endsWith(".dll") || s.endsWith(".ttf");
101
};
102
103
private String vfsPrefix = "/" + VFS_ROOT;
0 commit comments