mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 07:20:29 +03:00
Don't split stdout/stderr
For the most part, doing this just makes build output incomprehensible, with errors appearing out of context.
This commit is contained in:
parent
450685fe2f
commit
874565fb73
4 changed files with 31 additions and 58 deletions
|
|
@ -65,7 +65,7 @@ def genkey(keystore, repo_keyalias, password, keydname):
|
|||
'-storepass', password, '-keypass', password,
|
||||
'-dname', keydname])
|
||||
if p.returncode != 0:
|
||||
raise BuildException("Failed to generate key", p.stdout, p.stderr)
|
||||
raise BuildException("Failed to generate key", p.stdout)
|
||||
# now show the lovely key that was just generated
|
||||
p = subprocess.Popen(['keytool', '-list', '-v',
|
||||
'-keystore', keystore, '-alias', repo_keyalias],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue