mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-09 00:40:29 +03:00
publish: keystore "NONE" is a special case and doesn't need to exist
This commit is contained in:
parent
11236deec6
commit
6128f93d26
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ def main():
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
binaries_dir = os.path.join(unsigned_dir, 'binaries')
|
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']))
|
logging.error("Config error - missing '{0}'".format(config['keystore']))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue