From a8a35d5aaf40971cbfb5d59abffc26d3dd58b8ab Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 26 Aug 2023 09:52:58 +0000 Subject: [PATCH] repo: Fix expression to find package archives Signed-off-by: Michael Tremer --- src/libpakfire/repo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5