mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-19 21:30:10 +01:00
index: smartcardoptions is a list or tuple, but only lists can be added
This commit is contained in:
parent
54257f8f6a
commit
7dcf4f5680
@ -610,7 +610,7 @@ def extract_pubkey():
|
||||
'-alias', common.config['repo_keyalias'],
|
||||
'-keystore', common.config['keystore'],
|
||||
'-storepass:env', 'FDROID_KEY_STORE_PASS']
|
||||
+ common.config['smartcardoptions'],
|
||||
+ list(common.config['smartcardoptions']),
|
||||
envs=env_vars, output=False, stderr_to_stdout=False)
|
||||
if p.returncode != 0 or len(p.output) < 20:
|
||||
msg = "Failed to get repo pubkey!"
|
||||
|
Loading…
Reference in New Issue
Block a user