Ignore non version number entries in build_tools_path

This commit is contained in:
Jochen Sprickerhof 2020-11-26 23:13:37 +01:00
parent 60748acb9d
commit 5c36f84430

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)):
if not os.path.isdir(os.path.join(build_tools_path, f)) or not isinstance(LooseVersion(f), int):
continue
if LooseVersion(f) < LooseVersion(MINIMUM_APKSIGNER_BUILD_TOOLS_VERSION):
return None