mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
fix bug listing new key created in init
Oops, a typo with a ] in e53092cffa
This commit is contained in:
parent
faf0c4381f
commit
f582cd7a9e
1 changed files with 2 additions and 2 deletions
|
|
@ -71,8 +71,8 @@ def genkey(keystore, repo_keyalias, password, keydname):
|
||||||
raise BuildException("Failed to generate key", p.stdout)
|
raise BuildException("Failed to generate key", p.stdout)
|
||||||
# now show the lovely key that was just generated
|
# now show the lovely key that was just generated
|
||||||
p = FDroidPopen(['keytool', '-list', '-v',
|
p = FDroidPopen(['keytool', '-list', '-v',
|
||||||
'-keystore', keystore, '-alias', repo_keyalias],
|
'-keystore', keystore, '-alias', repo_keyalias,
|
||||||
'-storepass:file', config['keystorepassfile'])
|
'-storepass:file', config['keystorepassfile']])
|
||||||
logging.info(p.stdout.strip() + '\n\n')
|
logging.info(p.stdout.strip() + '\n\n')
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue