Fix apkdiff not checking entire files

This commit is contained in:
Jesse Smick
2020-01-06 23:22:05 -08:00
committed by GitHub
parent 1642ef1557
commit e62a59c65e

View File

@@ -8,7 +8,7 @@ def compareFiles(first, second):
if firstBytes != secondBytes:
return False
if firstBytes != b"" or secondBytes != b"":
if firstBytes == b"":
break
return True