From: Michael Tremer Date: Sat, 26 Aug 2023 09:52:58 +0000 (+0000) Subject: repo: Fix expression to find package archives X-Git-Tag: 0.9.29~57 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8a35d5aaf40971cbfb5d59abffc26d3dd58b8ab;p=pakfire.git repo: Fix expression to find package archives Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/repo.c b/src/libpakfire/repo.c index 5ae76ae92..10ccde02a 100644 --- a/src/libpakfire/repo.c +++ b/src/libpakfire/repo.c @@ -1271,7 +1271,7 @@ PAKFIRE_EXPORT int pakfire_repo_scan(struct pakfire_repo* repo, int flags) { if (r) goto ERROR; - static const char* includes[] = { "*.pfm", NULL }; + static const char* includes[] = { "**.pfm", NULL }; // Find all package files r = pakfire_filelist_scan(filelist, path, includes, NULL, 0);