Do not diff .odex files
They still are not deterministic -- only the boot images were made deterministic (.oat/.art). Bug: 26956807 Change-Id: I2e00bb6662b4c8d184c48ef9aa34b39142c94893
This commit is contained in:
parent
8c915ee2ef
commit
c4438d3d29
1 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,10 @@ def ignore(name):
|
|||
'RECOVERY/RAMDISK/selinux_version']:
|
||||
return True
|
||||
|
||||
# b/26956807 .odex files are not deterministic
|
||||
if name.endswith('.odex'):
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue