OSDN Git Service

map -e with no cert to PRESIGNED
authorDoug Zongker <dougz@android.com>
Wed, 16 Dec 2009 01:27:49 +0000 (17:27 -0800)
committerDoug Zongker <dougz@android.com>
Wed, 16 Dec 2009 01:27:49 +0000 (17:27 -0800)
Needed for backwards compatibility with scripts that use -e.

tools/releasetools/sign_target_files_apks

index 4ec9347..91e03f4 100755 (executable)
@@ -91,6 +91,8 @@ def GetApkCerts(tf_zip):
 
   # apply all the -e options, overriding anything in the file
   for apk, cert in OPTIONS.extra_apks.iteritems():
+    if not cert:
+      cert = "PRESIGNED"
     certmap[apk] = OPTIONS.key_map.get(cert, cert)
 
   return certmap