Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/patch'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed May 17, 2022
2 parents b177836 + 49a426e commit a4111b1
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,7 @@ private List<File> getSplitDyldCacheFiles(ByteProvider baseProvider,
if (file != null && shouldCombineSplitFiles) {
String baseName = file.getName();
File[] splitFiles = file.getParentFile().listFiles(f -> {
if (!f.getName().startsWith(baseName)) {
return false;
}
if (f.getName().equals(baseName)) {
if (!f.getName().startsWith(baseName + ".")) {
return false;
}
if (f.getName().toLowerCase().endsWith(".map")) {
Expand Down

0 comments on commit a4111b1

Please sign in to comment.