1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

Revert "Ignore non version number entries in build_tools_path"

This reverts commit 5c36f84430.
This commit is contained in:
Jochen Sprickerhof 2020-11-29 19:04:12 +01:00
parent 2cca336a29
commit 4d78d79280

View File

@ -480,7 +480,7 @@ def find_apksigner():
if not os.path.isdir(build_tools_path):
return None
for f in sorted(os.listdir(build_tools_path), reverse=True):
if not os.path.isdir(os.path.join(build_tools_path, f)) or not isinstance(LooseVersion(f), int):
if not os.path.isdir(os.path.join(build_tools_path, f)):
continue
if LooseVersion(f) < LooseVersion(MINIMUM_APKSIGNER_BUILD_TOOLS_VERSION):
return None