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 e937b89 commit e422737Copy full SHA for e422737
1 file changed
view/sharedcache/core/SharedCacheBuilder.cpp
@@ -37,6 +37,9 @@ bool SharedCacheBuilder::AddFile(
37
// Skip bndb files!
38
if (fileName.find(".bndb") != std::string::npos)
39
return false;
40
+ // Skip a2s files
41
+ if (fileName.find(".a2s") != std::string::npos)
42
+ return false;
43
44
try
45
{
0 commit comments