mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 23:10:29 +03:00
Rename PopenResult.stdout to output since it also contains stderr
This commit is contained in:
parent
22f4ed4b7a
commit
8888962ace
6 changed files with 41 additions and 41 deletions
|
|
@ -81,12 +81,12 @@ def genkey(keystore, repo_keyalias, password, keydname):
|
|||
'-dname', keydname])
|
||||
# TODO keypass should be sent via stdin
|
||||
if p.returncode != 0:
|
||||
raise BuildException("Failed to generate key", p.stdout)
|
||||
raise BuildException("Failed to generate key", p.output)
|
||||
# now show the lovely key that was just generated
|
||||
p = FDroidPopen(['keytool', '-list', '-v',
|
||||
'-keystore', keystore, '-alias', repo_keyalias,
|
||||
'-storepass:file', config['keystorepassfile']])
|
||||
logging.info(p.stdout.strip() + '\n\n')
|
||||
logging.info(p.output.strip() + '\n\n')
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue