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

Commit 7857373b authored by Jeff Davidson's avatar Jeff Davidson Committed by Android Git Automerger
Browse files

am 033fbe28: Support signing target_files without a recovery.fstab.

* commit '033fbe28':
  Support signing target_files without a recovery.fstab.
parents 5e528222 033fbe28
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -151,7 +151,8 @@ def LoadRecoveryFSTab(zip):
  try:
    data = zip.read("RECOVERY/RAMDISK/etc/recovery.fstab")
  except KeyError:
    raise ValueError("Could not find RECOVERY/RAMDISK/etc/recovery.fstab")
    print "Warning: could not find RECOVERY/RAMDISK/etc/recovery.fstab in %s." % zip
    data = ""

  d = {}
  for line in data.split("\n"):