Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c4438d3d authored by Dan Willemsen's avatar Dan Willemsen
Browse files

Do not diff .odex files

They still are not deterministic -- only the boot images were made
deterministic (.oat/.art).

Bug: 26956807
Change-Id: I2e00bb6662b4c8d184c48ef9aa34b39142c94893
parent 8c915ee2
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -51,6 +51,10 @@ def ignore(name):
              'RECOVERY/RAMDISK/selinux_version']:
              'RECOVERY/RAMDISK/selinux_version']:
    return True
    return True


  # b/26956807 .odex files are not deterministic
  if name.endswith('.odex'):
    return True

  return False
  return False