Skip to content

Commit

Permalink
adjust secondary regex so that more package list files are picked up
Browse files Browse the repository at this point in the history
  • Loading branch information
dolphinoracle committed Dec 31, 2024
1 parent 156754b commit 637e24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aptcache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void AptCache::loadCacheFiles()

// Define include and exclude regex patterns
const QRegularExpression includeRegex(QString(R"(^.*binary-%1_Packages$)").arg(arch));
const QRegularExpression secondaryRegex(R"(^.*binary-.*_Packages$)");
const QRegularExpression secondaryRegex(R"(^.*_Packages$)");
const QRegularExpression excludeRegex(
R"((debian_.*-backports_.*_Packages)|(mx_testrepo.*_test_.*_Packages)|(mx_repo.*_temp_.*_Packages))");

Expand Down

0 comments on commit 637e24f

Please sign in to comment.