Skip to content
Snippets Groups Projects
Commit 07c016a3 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Mention in the diff if apksigner is missing.

parent 4161f7fc
No related branches found
No related tags found
No related merge requests found
Pipeline #280457 passed
......@@ -223,9 +223,9 @@ class ApkFile(ZipFileBase):
x = Difference.from_operation(Apksigner, self.path, other.path)
if x is not None:
differences.insert(0, x)
except RequiredToolNotFound: # noqa
except RequiredToolNotFound as exc: # noqa
# Don't require apksigner
pass
self.add_comment(exc.get_comment())
return differences
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment