From 46ebdd701a0091158ac6549e94991f3a7a219c32 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Wed, 9 Jun 2021 17:48:24 +0200 Subject: [PATCH] [lint] convert path to Path first Fixes a lot of undetected extlibs. Regression of 6bafb036. --- fdroidserver/lint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fdroidserver/lint.py b/fdroidserver/lint.py index 04b9fc0b..964275dd 100644 --- a/fdroidserver/lint.py +++ b/fdroidserver/lint.py @@ -530,6 +530,7 @@ def check_extlib_dir(apps): for app in apps: for build in app.get('Builds', []): for path in build.extlibs: + path = Path(path) if path not in extlib_files: yield _( "{appid}: Unknown extlib {path} in build '{versionName}'"