chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
faf0c43
)
fix bug listing new key created in init
author
Hans-Christoph Steiner
<hans@eds.org>
Fri, 4 Apr 2014 03:00:36 +0000
(23:00 -0400)
committer
Hans-Christoph Steiner
<hans@eds.org>
Mon, 7 Apr 2014 20:00:18 +0000
(16:00 -0400)
Oops, a typo with a ] in
e53092cffa993031cdd6f3269ca792e42b41a9a6
fdroidserver/init.py
patch
|
blob
|
history
diff --git
a/fdroidserver/init.py
b/fdroidserver/init.py
index 36e38e52f75350694e046ff73f63ad02582600f5..4d9bc84511c5f767db8387dade8611029b16d7aa 100644
(file)
--- a/
fdroidserver/init.py
+++ b/
fdroidserver/init.py
@@
-71,8
+71,8
@@
def genkey(keystore, repo_keyalias, password, keydname):
raise BuildException("Failed to generate key", p.stdout)
# now show the lovely key that was just generated
p = FDroidPopen(['keytool', '-list', '-v',
-
'-keystore', keystore, '-alias', repo_keyalias]
,
-
'-storepass:file', config['keystorepassfile'
])
+
'-keystore', keystore, '-alias', repo_keyalias
,
+
'-storepass:file', config['keystorepassfile']
])
logging.info(p.stdout.strip() + '\n\n')