Skip to content

Commit e422737

Browse files
committed
[DSC] Ignore .a2s files when loading a shared cache
These files are present alongside iOS 26 shared caches. Explicitly ignoring them avoids an error being logged to the console.
1 parent e937b89 commit e422737

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

view/sharedcache/core/SharedCacheBuilder.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ bool SharedCacheBuilder::AddFile(
3737
// Skip bndb files!
3838
if (fileName.find(".bndb") != std::string::npos)
3939
return false;
40+
// Skip a2s files
41+
if (fileName.find(".a2s") != std::string::npos)
42+
return false;
4043

4144
try
4245
{

0 commit comments

Comments
 (0)