Generate gpg signatures with .asc extension

This commit is contained in:
Ciaran Gultnieks 2014-06-30 12:04:04 +01:00
parent 3cb4a80efb
commit 07006e4c00

View file

@ -53,7 +53,7 @@ def main():
for apkfile in sorted(glob.glob(os.path.join(output_dir, '*.apk'))):
apkfilename = os.path.basename(apkfile)
sigfilename = apkfilename + ".txt"
sigfilename = apkfilename + ".asc"
sigpath = os.path.join(output_dir, sigfilename)
if not os.path.exists(sigpath):