1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

publish: keystore "NONE" is a special case and doesn't need to exist

This commit is contained in:
Marcus Hoffmann 2020-08-14 15:06:33 +02:00
parent 11236deec6
commit 6128f93d26

View File

@ -196,7 +196,7 @@ def main():
sys.exit(1)
binaries_dir = os.path.join(unsigned_dir, 'binaries')
if not os.path.exists(config['keystore']):
if not config['keystore'] == "NONE" and not os.path.exists(config['keystore']):
logging.error("Config error - missing '{0}'".format(config['keystore']))
sys.exit(1)