mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
set locale explicitly when using keytool
This commit is contained in:
parent
545872f184
commit
74ae6a6a3b
4 changed files with 15 additions and 13 deletions
|
|
@ -620,7 +620,8 @@ def extract_pubkey():
|
|||
if 'repo_pubkey' in common.config:
|
||||
pubkey = unhexlify(common.config['repo_pubkey'])
|
||||
else:
|
||||
env_vars = {'FDROID_KEY_STORE_PASS': common.config['keystorepass']}
|
||||
env_vars = {'LC_ALL': 'C.UTF-8',
|
||||
'FDROID_KEY_STORE_PASS': common.config['keystorepass']}
|
||||
p = FDroidPopenBytes([common.config['keytool'], '-exportcert',
|
||||
'-alias', common.config['repo_keyalias'],
|
||||
'-keystore', common.config['keystore'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue