Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IO

private String getAbiFromPath(String path) {
path = path.replaceAll(Matcher.quoteReplacement(File.separator), "/");
final int prefixPos = path.indexOf("/lib/");
final int prefixPos = path.lastIndexOf("/lib/");
if (prefixPos < 0) {
return null;
}
Expand Down