1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-10 23:00:12 +02:00

[lint] convert path to Path first

Fixes a lot of undetected extlibs.
Regression of 6bafb036.
This commit is contained in:
Jochen Sprickerhof 2021-06-09 17:48:24 +02:00
parent 14cfa11b68
commit 46ebdd701a

View File

@ -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}'"